[Kernel-packages] [Bug 1490564] onza (i386) - tests ran: 170, failed: 19

2015-09-02 Thread Brad Figg
tests ran: 170, failed: 19;
  
http://kernel.ubuntu.com/testing/onza__4.1.0-3.3__2015-09-02_01-17-00/results-index.html

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Incomplete
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1491094] Re: wifi USB dongle fails to work with musb-hdrc error

2015-09-02 Thread Paolo Pisati
I guess it happens on a BeagleBone Black: do you get a single warning or
multiple repeated messages?

Reading the code, that's a one shot spurious event:

drivers/usb/musb/musb_core.c::musb_stage0_irq()
...
/* During connection as an A-Device, we may see a short
 * current spikes causing voltage drop, because of cable
 * and peripheral capacitance combined with vbus draw.
 * (So: less common with truly self-powered devices, where
 * vbus doesn't act like a power supply.)
 *
 * Such spikes are short; usually less than ~500 usec, max
 * of ~2 msec.  That is, they're not sustained overcurrent
 * errors, though they're reported using VBUSERROR irqs.
 *
 * Workarounds:  (a) hardware: use self powered devices.
 * (b) software:  ignore non-repeated VBUS errors.
...

and it might not be related to your wifi dongle not working.

Does the same wifi usb dongle work on a x86 box? And could you test it
against a vivid kernel there? Which kernel module does it pick up?

On a 4.2 wily kernel i have a match for that vendor/product id:

git grep 148f
...
drivers/net/wireless/mediatek/mt7601u/usb.c:{ USB_DEVICE(0x148f, 0x7601) }, 
<--- HERE
drivers/net/wireless/mediatek/mt7601u/usb.c:{ USB_DEVICE(0x148f, 0x760a) },
drivers/net/wireless/mediatek/mt7601u/usb.c:{ USB_DEVICE(0x148f, 0x760b) },
drivers/net/wireless/mediatek/mt7601u/usb.c:{ USB_DEVICE(0x148f, 0x760c) },
drivers/net/wireless/mediatek/mt7601u/usb.c:{ USB_DEVICE(0x148f, 0x760d) },
drivers/net/wireless/rt2x00/rt2500usb.c:{ USB_DEVICE(0x148f, 0x1706) },
drivers/net/wireless/rt2x00/rt2500usb.c:{ USB_DEVICE(0x148f, 0x2570) },
drivers/net/wireless/rt2x00/rt2500usb.c:{ USB_DEVICE(0x148f, 0x9020) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x2070) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x2770) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x2870) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3070) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3071) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3072) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3370) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x8070) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3572) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0xf301) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3573) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x5370) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x5372) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x5572) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0xf101) },
drivers/net/wireless/rt2x00/rt73usb.c:  { USB_DEVICE(0x148f, 0x9021) },
drivers/net/wireless/rt2x00/rt73usb.c:  { USB_DEVICE(0x148f, 0x2573) },
drivers/net/wireless/rt2x00/rt73usb.c:  { USB_DEVICE(0x148f, 0x2671) },

while i don't have any match in vivid, and that mediatek driver is
completely missing there:

drivers/net/wireless/rt2x00/rt2500usb.c:{ USB_DEVICE(0x148f, 0x1706) },
drivers/net/wireless/rt2x00/rt2500usb.c:{ USB_DEVICE(0x148f, 0x2570) },
drivers/net/wireless/rt2x00/rt2500usb.c:{ USB_DEVICE(0x148f, 0x9020) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x2070) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x2770) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x2870) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3070) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3071) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3072) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3370) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x8070) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3572) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0xf301) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x3573) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x5370) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x5372) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0x5572) },
drivers/net/wireless/rt2x00/rt2800usb.c:{ USB_DEVICE(0x148f, 0xf101) },
drivers/net/wireless/rt2x00/rt73usb.c:  { USB_DEVICE(0x148f, 0x9021) },
drivers/net/wireless/rt2x00/rt73usb.c:  { USB_DEVICE(0x148f, 0x2573) },
drivers/net/wireless/rt2x00/rt73usb.c:  { USB_DEVICE(0x148f, 0x2671) },

-- 
You received this bug 

[Kernel-packages] [Bug 1490564] tarf (i386) - tests ran: 170, failed: 2

2015-09-02 Thread Brad Figg
tests ran: 170, failed: 2;
  
http://kernel.ubuntu.com/testing/tarf__4.2.0-7.7__2015-09-02_00-26-00/results-index.html

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Incomplete
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1491284] [NEW] Two spinners showing and the status will become "Not discoverable" after BT enabled for a while

2015-09-02 Thread Evan Wang
Public bug reported:

$ system-image-cli -i
current build number: 114
device name: krillin
channel: ubuntu-touch/rc-proposed/bq-aquaris.en
last update: 2015-09-02 06:52:45
version version: 114
version ubuntu: 20150902
version device: 20150821-736d127
version custom: 20150821-887-33-32-vivid

Steps to reproduce:
1.Enable Bluetooth from System Settings -->Bluetooth-->Enabled
2.The status will show as "Discoverable -->Aquaris E4.5 Ubuntu Edition" and the 
spinner appears in 10 seconds
3.Waiting for a while then check the status again

Expected results:
The status should be kept as "Discoverable" with device name shown, and only 
one spinner shows in every 10 seconds 

Actual results:
The status will become "Not discoverable" and two spinners showing after for a 
while, attached the screenshot and the dmesg output bellow:

[ 1050.241914] BT ON <>sec=1441177892, usec=884713
[ 1050.241939] [WMT-STP-EXP][I]mtk_wcn_wmt_func_on: mtk_wcn_wmt_func_on_f 
type(0)
[ 1050.241959] [HCI-STP][I]hci_stp_open:WMT turn on BT OK!
[ 1050.241978] Flush type = 0 Rx Queue
[ 1050.242119] [HCI-STP][I]hci_stp_dev_init_work:Load custom BT config success
[ 1050.275283] [HCI-STP][I]hci_stp_open:hci_stp_dev_init ok
[ 1050.275315] Flush type = 0 Rx Queue
[ 1078.037588] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
[ 1591.020633] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
[ 1761.020828] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
[ 1813.890670] [mtk_net][sched]dev_deactivate dev = wlan0 
[ 1813.904681] cfg80211: Calling CRDA for country: US
[ 1825.479625] [mtk_net][sched]dev_activate dev = wlan0 
[ 1825.500057] --> mtk_cfg80211_set_default_key()
[ 1921.031722] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
[ 2161.026379] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
[ 2511.029227] [STP-BTIF][I]mtk_wcn_consys_stp_btif_tx:special case for 
STP-CORE,pbuf(c1001e98)
[ 2511.036971] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
[ 3424.024060] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)

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

** Attachment added: "bt-not-discoverable-1.png"
   
https://bugs.launchpad.net/bugs/1491284/+attachment/4456033/+files/bt-not-discoverable-1.png

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

Title:
  Two spinners showing and the status will become "Not discoverable"
  after BT enabled for a while

Status in bluez package in Ubuntu:
  New

Bug description:
  $ system-image-cli -i
  current build number: 114
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-09-02 06:52:45
  version version: 114
  version ubuntu: 20150902
  version device: 20150821-736d127
  version custom: 20150821-887-33-32-vivid

  Steps to reproduce:
  1.Enable Bluetooth from System Settings -->Bluetooth-->Enabled
  2.The status will show as "Discoverable -->Aquaris E4.5 Ubuntu Edition" and 
the spinner appears in 10 seconds
  3.Waiting for a while then check the status again

  Expected results:
  The status should be kept as "Discoverable" with device name shown, and only 
one spinner shows in every 10 seconds 

  Actual results:
  The status will become "Not discoverable" and two spinners showing after for 
a while, attached the screenshot and the dmesg output bellow:

  [ 1050.241914] BT ON <>sec=1441177892, usec=884713
  [ 1050.241939] [WMT-STP-EXP][I]mtk_wcn_wmt_func_on: mtk_wcn_wmt_func_on_f 
type(0)
  [ 1050.241959] [HCI-STP][I]hci_stp_open:WMT turn on BT OK!
  [ 1050.241978] Flush type = 0 Rx Queue
  [ 1050.242119] [HCI-STP][I]hci_stp_dev_init_work:Load custom BT config success
  [ 1050.275283] [HCI-STP][I]hci_stp_open:hci_stp_dev_init ok
  [ 1050.275315] Flush type = 0 Rx Queue
  [ 1078.037588] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
  [ 1591.020633] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
  [ 1761.020828] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
  [ 1813.890670] [mtk_net][sched]dev_deactivate dev = wlan0 
  [ 1813.904681] cfg80211: Calling CRDA for country: US
  [ 1825.479625] [mtk_net][sched]dev_activate dev = wlan0 
  [ 1825.500057] --> mtk_cfg80211_set_default_key()
  [ 1921.031722] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
  [ 2161.026379] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
  [ 2511.029227] [STP-BTIF][I]mtk_wcn_consys_stp_btif_tx:special case for 
STP-CORE,pbuf(c1001e98)
  [ 2511.036971] [WMT-CTRL][W]wmt_ctrl_rx:wmt_ctrl_rx be signaled, but no rx 
data(200)
  [ 3424.02

[Kernel-packages] [Bug 1483124] Re: No VGA output after ubuntu loading screen (Intel 8086:1912)

2015-09-02 Thread Timo Aaltonen
*** This bug is a duplicate of bug 1484531 ***
https://bugs.launchpad.net/bugs/1484531

forgot that this bug existed, it's actually a dupe of
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1484531

** This bug has been marked a duplicate of bug 1484531
   [i915 SKL] Add support for VGA output

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

Title:
  No VGA output after ubuntu loading screen (Intel 8086:1912)

Status in HWE Next:
  Fix Committed
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Vivid:
  Fix Committed

Bug description:
  [Description]
  No VGA output after ubuntu loading screen.
  Tried two monitors, both show no signal.

  [Reproduce Steps]
  1. Connect VGA monitor, and boot the system

  [Results]
  Expected: VGA output works normally.
  Actual: No VGA output after the ubuntu loading screen.

  [Additional Information]
  SKU: Dell Skylake
  Graphic: Intel Corporation Device [8086:1912]

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1483124/+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 1233967] Re: [ASUS X200CA] Wireless Led shows off after resume from suspend

2015-09-02 Thread madbiologist
These patches are available in Ubuntu 14.04.3 in the 3.16.0-33.44 kernel
(see bug 1427767), and also in Ubuntu 14.10 and later versions.

** Changed in: hwe-next
   Status: In Progress => Fix Released

** Changed in: linux (Ubuntu)
   Status: In Progress => 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/1233967

Title:
  [ASUS X200CA] Wireless Led shows off after resume from suspend

Status in HWE Next:
  Fix Released
Status in linux package in Ubuntu:
  Fix Released

Bug description:
  Steps:
  1. Boot into system
  2. Wireless is on and Led is on
  3. Suspend the system
  4. Press any key to resume

  Expected results: The wireless will auto re-connected and Led should
  be on

  Actual results: The wireless is connected but Led still shows off

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1233967/+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 1486099] Re: Crash of Xorg under intel drm

2015-09-02 Thread Trevor Rudolph
Just to add an update, I also tested the mainline 4.0.0-04-generic
kernel and experienced the crash. So the fix must have been put in
between 4.0 and 4.2

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

Title:
  Crash of Xorg under intel drm

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I am using an older Ubuntu mainline kernel with Vivid. The computer I
  am using is a Dell XPS 9343 which is known not to do too well with
  linux, like most new dell computers. However the only issue that
  actively bothers me the fact that Xorg is getting crashed all the time
  by the frame buffer drm in the intel driver. This can be observer in
  this trace,

  [33477.084660] [ cut here ]
  [33477.084688] WARNING: CPU: 0 PID: 901 at 
/build/linux-OdodyZ/linux-3.19.0/drivers/gpu/drm/i915/intel_display.c:1256 
assert_plane.constprop.87+0x7b/0x90 [i915]()
  [33477.084689] plane A assertion failure (expected on, current off)
  [33477.084706] Modules linked in: isofs pci_stub vboxpci(OE) vboxnetadp(OE) 
vboxnetflt(OE) vboxdrv(OE) binfmt_misc rfcomm bnep nls_iso8859_1 cdc_acm btusb 
bluetooth uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core 
v4l2_common videodev media usbhid joydev snd_hda_codec_hdmi wl(POE) dell_wmi 
hid_multitouch sparse_keymap intel_rapl iosf_mbi x86_pkg_temp_thermal 
intel_powerclamp coretemp kvm_intel dell_laptop dcdbas kvm crct10dif_pclmul 
crc32_pclmul ghash_clmulni_intel aesni_intel aes_x86_64 lrw gf128mul 
glue_helper ablk_helper cryptd serio_raw dell_led snd_hda_codec_realtek 
snd_soc_rt286 snd_hda_codec_generic snd_soc_core snd_compress snd_pcm_dmaengine 
i915 lpc_ich snd_hda_intel snd_seq_midi snd_hda_controller snd_seq_midi_event 
cfg80211 snd_hda_codec snd_hwdep rtsx_pci_ms drm_kms_helper memstick
  [33477.084720]  mei_me snd_rawmidi snd_pcm drm i2c_algo_bit shpchp mei wmi 
int3403_thermal soc_button_array snd_seq snd_seq_device snd_timer snd soundcore 
i2c_hid hid video dw_dmac dw_dmac_core snd_soc_sst_acpi 8250_dw 
i2c_designware_platform i2c_designware_core spi_pxa2xx_platform int3402_thermal 
int3400_thermal acpi_thermal_rel processor_thermal_device acpi_pad mac_hid 
parport_pc ppdev lp parport autofs4 uas usb_storage rtsx_pci_sdmmc psmouse ahci 
libahci sdhci_acpi sdhci rtsx_pci
  [33477.084722] CPU: 0 PID: 901 Comm: Xorg Tainted: PW  OE  
3.19.0-25-generic #26-Ubuntu
  [33477.084723] Hardware name: Dell Inc. XPS 13 9343/0310JH, BIOS A05 
07/14/2015
  [33477.084725]  c0611310 880212b076f8 817c4518 
888e888e
  [33477.084726]  880212b07748 880212b07738 81076a6a 
8802134c4200
  [33477.084727]   880212f3d000 880036582800 
880036582800
  [33477.084727] Call Trace:
  [33477.084732]  [] dump_stack+0x45/0x57
  [33477.084735]  [] warn_slowpath_common+0x8a/0xc0
  [33477.084736]  [] warn_slowpath_fmt+0x46/0x50
  [33477.084751]  [] assert_plane.constprop.87+0x7b/0x90 
[i915]
  [33477.084764]  [] hsw_disable_ips+0x41/0x190 [i915]
  [33477.084777]  [] intel_crtc_disable_planes+0x48/0x140 
[i915]
  [33477.084788]  [] haswell_crtc_disable+0x4f/0x3c0 [i915]
  [33477.084800]  [] __intel_set_mode+0xa59/0xc80 [i915]
  [33477.084812]  [] intel_crtc_set_config+0xbfb/0xf70 [i915]
  [33477.084815]  [] ? __enqueue_entity+0x78/0x80
  [33477.084827]  [] drm_mode_set_config_internal+0x66/0x100 
[drm]
  [33477.084833]  [] restore_fbdev_mode+0xc8/0xf0 
[drm_kms_helper]
  [33477.084839]  [] 
drm_fb_helper_restore_fbdev_mode_unlocked+0x29/0x80 [drm_kms_helper]
  [33477.084843]  [] drm_fb_helper_set_par+0x22/0x50 
[drm_kms_helper]
  [33477.084857]  [] intel_fbdev_set_par+0x1a/0x60 [i915]
  [33477.084859]  [] fb_set_var+0x18a/0x410
  [33477.084862]  [] ? check_preempt_curr+0x89/0xa0
  [33477.084863]  [] ? __enqueue_entity+0x78/0x80
  [33477.084865]  [] ? enqueue_entity+0x400/0xc30
  [33477.084867]  [] fbcon_blank+0x229/0x300
  [33477.084869]  [] do_unblank_screen+0xba/0x1f0
  [33477.084872]  [] complete_change_console+0x5d/0xf0
  [33477.084873]  [] vt_ioctl+0x118a/0x1460
  [33477.084881]  [] ? drm_ioctl+0x8c/0x680 [drm]
  [33477.084883]  [] tty_ioctl+0x411/0xcb0
  [33477.084886]  [] ? do_readv_writev+0x185/0x280
  [33477.084888]  [] do_vfs_ioctl+0x2e0/0x4e0
  [33477.084889]  [] SyS_ioctl+0x81/0xa0
  [33477.084890]  [] system_call_fastpath+0x16/0x1b
  [33477.084891] ---[ end trace 4514549be501e890 ]---
  [33479.411280] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU 
pipe A FIFO underrun

  I can confirm that the crash occurs in different ways according to
  different traces I've read but it would be impossible to compile all
  of them. The crashes of the screen are not apparent to any function
  done on the user end. They are random and can sometimes be very spaced
  out or sometimes happen many times in a row. In order to get the
  screen working 

[Kernel-packages] [Bug 1248289] Re: Missing libunwind support in perf

2015-09-02 Thread Tim Gardner
The Wily kernel will be released as an LTS HWE kernel in 14.04.4

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

Title:
  Missing libunwind support in perf

Status in linux package in Ubuntu:
  Fix Released

Bug description:
  Hi,

  I'm trying to use perf's libunwind support in 13.04 with kernel
  3.11.0-12-generic on amd64.  Typically you can do this by using the
  "-g dwarf" flag, but it appears the perf command included in linux-
  tools-3.11.0-12-generic was not compiled with libunwind.  This may be
  as simple as the build machine didn't have libunwind installed.
  Having dwarf support in perf with default Ubuntu kernels would be very
  useful as it provides a way to get profiling information when
  -fomitframepointer is used.

  Relevant upstream code:

  https://github.com/torvalds/linux/blob/v3.11/tools/perf/Makefile#L459
  https://github.com/torvalds/linux/blob/v3.11/tools/perf/builtin-record.c#L758

  Let me know if I can provide any other information.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1248289/+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 1491494] [NEW] Ubuntu 14.04.03 LPAR hits kernel oops after serial adapter is removed from profile

2015-09-02 Thread Launchpad Bug Tracker
You have been subscribed to a public bug:

-- Problem Description --

The failure related to the BELL-3 (2 port-Async EIA-232 adapter). Ubuntu
always hit exception when the adapter is not present. See my test
scenarios below.

Test #1: Boot Ubuntu with BELL-3 adapter 
===

- The Ubuntu LPAR was running with the BELL-3 (2 port-Async EIA-232 adapter) 
before. So I assigned the BELL-3 adapter to Ubuntu LPAR profile and powered on 
the LPAR. 
=> Ubuntu boot fine this time.

 
Test #2: Boot Ubuntu with BELL-3 adapter removed from LPAR profile
===

- I powered down the Ubuntu partition and removed the BELL-3 adapter from LPAR 
profile then powered on the LPAR.
=> Ubuntu hit the exception.

Elapsed time since release of system processors: 0 mins 9 secs
error: no suitable video mode found.
OF stdout device is: /vdevice/vty@3000
Preparing to boot Linux version 3.19.0-23-generic (buildd@denneed03) (gcc 
version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #24~14.04.1-Ubuntu SMP Wed Jul 8 
11:17:19 UTC 2015 (Ubuntu 3.19.0-23.24~14.04.1-generic 3.19.8-ckt2)
Detected machine type: 0101
Max number of cores passed to firmware: 256 (NR_CPUS = 2048)
Calling ibm,client-architecture-support... done
command line: BOOT_IMAGE=/boot/vmlinux-3.19.0-23-generic 
root=UUID=768190e7-f633-4c63-a1e3-588d12dea265 ro quiet splash vt.handoff=7
memory layout at init:
  memory_limit :  (16 MB aligned)
  alloc_bottom : 0b42
  alloc_top: 1000
  alloc_top_hi : 1000
  rmo_top  : 1000
  ram_top  : 1000
instantiating rtas at 0x0ecb... done
prom_hold_cpus: skipped
copying OF device tree...
Building dt strings...
Building dt structure...
Device tree strings 0x0b43 -> 0x0b4316b1
Device tree struct  0x0b44 -> 0x0b47
Calling quiesce...
returning from prom_init
 -> smp_release_cpus()
spinning_secondaries = 15
 <- smp_release_cpus()
 <- setup_system()
[0.661510] 
/build/linux-lts-vivid-uV14Ja/linux-lts-vivid-3.19.0/drivers/rtc/hctosys.c: 
unable to open rtc device (rtc0)
[0.672826] sd 0:0:1:0: [sda] Assuming drive cache: write through
[4.658302] device-mapper: table: 252:0: multipath: error getting device
[4.691990] device-mapper: table: 252:0: multipath: error getting device
[4.934034] device-mapper: table: 252:0: multipath: error getting device
[4.951977] device-mapper: table: 252:0: multipath: error getting device
 * Discovering and coalescing multipaths...  [ OK ] 
Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
 * Starting AppArmor profiles[ OK ] 
Loading the saved-state of the serial devices... 
[5.109665] Unable to handle kernel paging request for data at address 
0xd803
[5.109677] Faulting instruction address: 0xc060fec4
[5.109685] Oops: Kernel access of bad area, sig: 11 [#1]
[5.109691] SMP NR_CPUS=2048 NUMA pSeries
[5.109699] Modules linked in: dm_round_robin dm_multipath scsi_dh 
pseries_rng rtc_generic knem(OE) nfsd auth_rpcgss nfs_acl nfs lockd grace 
sunrpc fscache rdma_ucm(OE) ib_ucm(OE) rdma_cm(OE) iw_cm(OE) configfs 
ib_ipoib(OE) ib_cm(OE) ib_uverbs(OE) ib_umad(OE) mlx5_ib(OE) mlx5_core(OE) 
mlx4_ib(OE) ib_sa(OE) ib_mad(OE) ib_core(OE) ib_addr(OE) mlx4_en(OE) 
mlx4_core(OE) mlx_compat(OE)
[5.109759] CPU: 1 PID: 1816 Comm: setserial Tainted: G   OE  
3.19.0-23-generic #24~14.04.1-Ubuntu
[5.109769] task: c000f389c880 ti: c000f0528000 task.ti: 
c000f0528000
[5.109777] NIP: c060fec4 LR: c0617498 CTR: c060fe20
[5.109785] REGS: c000f052b6b0 TRAP: 0300   Tainted: G   OE   
(3.19.0-23-generic)
[5.109793] MSR: 80009033   CR: 84002022  XER: 

[5.109814] CFAR: c0008468 DAR: d803 DSISR: 4200 
SOFTE: 1 
GPR00: c0617498 c000f052b930 c144c700 00bf 
GPR04: d803 00bf c000f399 0141 
GPR08: c0611d20 c13539e0 d800 c1351ba8 
GPR12: c060fe20 ce830900   
GPR16:     
GPR20: 007d 0040   
GPR24:  c000f53cbc00 0001  
GPR28: c000f53cbde0 00bf 0003 c1754970 
[5.109916] NIP [c060fec4] io_serial_out+0xa4/0xd0
[5.109924] LR [c0617498] serial8250_do_startup+0x978/0xe50
[5.109931] Call Trace:
[5.109936] [c000f052b930] [c000f052b970] 0xc000f052b970 
(unreliable)
[5.109948] [c000f052b970] [c0617498] 
serial8250_do_startup+0x978/0xe50
[5.109958] [c000f052ba10] [c060eb00] 

[Kernel-packages] [Bug 1490564] Re: linux: 4.2.0-7.7 -proposed tracker

2015-09-02 Thread Adam Conrad
** Changed in: kernel-development-workflow/promote-to-proposed
   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/1490564

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1490130] Re: Elantech touchpad stops working after suspend

2015-09-02 Thread Harris Anggara
kernel 4.2 doesn't fix this issue.


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

** 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/1490130

Title:
  Elantech touchpad stops working after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  i have asus a455ld i5 5200u running kubuntu 15.04 with kernel 
4.0.8-040008-generic. 
  touchpad is recognized as elantech version 4. everything was fine until my 
notebook go to suspend and resume without touchpad working.
  I tried :
  modprobe -r psmouse
  modprobe psmouse

  it only work before suspend.
  execute those commands after resume from suspend is not working.

  the last thing i tried is this.

  when i use this command before suspend :

  insmod
  /lib/modules/4.0.8-040008-generic/kernel/drivers/input/mouse/psmouse.ko

  these appear in the dmesg:

  [  820.207105] psmouse serio1: elantech: assuming hardware version 4 (with 
firmware version 0x381f00)
  [  820.70] psmouse serio1: elantech: Synaptics capabilities query result 
0x10, 0x14, 0x0e.
  [  820.294698] input: ETPS/2 Elantech Touchpad as 
/devices/platform/i8042/serio1/input/input146

  but when i use the command after suspend, there is nothing any output
  in the dmesg.

  i tried all ubuntu varian and opensuse 13.2 live usb, the result is the same. 
  but in windows 10,  touchpad still active after suspend.
  --- 
  ApportVersion: 2.17.2-0ubuntu1.3
  Architecture: amd64
  CurrentDesktop: MATE
  DistroRelease: Ubuntu 15.04
  InstallationDate: Installed on 2015-06-20 (69 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  Package: linux (not installed)
  Tags:  vivid
  Uname: Linux 4.0.8-040008-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm bumblebee cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1490130/+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 1490038] Re: [i915_bpo] Adding DDI-E support caused a boot up gfx regression

2015-09-02 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/linux-lts-vivid

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

Title:
  [i915_bpo] Adding DDI-E support caused a boot up gfx regression

Status in HWE Next:
  Fix Committed
Status in linux package in Ubuntu:
  Invalid
Status in linux source package in Vivid:
  Fix Committed

Bug description:
  A boot up gfx regression (blank display) has been identified on a
  machine being certified caused by the recent addition of DDI-E support
  (VGA out). One patch of the series was still being debated at the time
  of the SRU cutoff date, but got included because it was on the set of
  commits that got tested on a number of systems. We can revert the
  current patch and revisit it later once upstream has a proper solution
  for it.

  commit b6fabc6e37462687296b60262edff5b75a50aff4
  Author: Rodrigo Vivi 
  Date:   Fri Aug 7 17:33:42 2015 -0700

  UBUNTU: SAUCE: i915_bpo: drm/i915/skl: DDI-E and DDI-A shares 4
  lanes.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1490038/+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 1440072] Re: [Hyper-V] Legacy network adapter is not detected

2015-09-02 Thread nmeier
Recent work on bug 101301 was done in email rather than in the bug.  The
following patch was tested on Hyper-V and then accepted into the PCI
tree.


 arch/x86/kernel/acpi/boot.c |1 +
 drivers/acpi/pci_link.c |   16 
 include/linux/acpi.h|2 +-
 3 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 
e49ee24da85e..9393896717d0 100644
--- a/arch/x86/kernel/acpi/boot.c
+++ b/arch/x86/kernel/acpi/boot.c
@@ -445,6 +445,7 @@ static void __init acpi_sci_ioapic_setup(u8 bus_irq, u16 
polarity, u16 trigger,
polarity = acpi_sci_flags & ACPI_MADT_POLARITY_MASK;
 
mp_override_legacy_irq(bus_irq, polarity, trigger, gsi);
+   acpi_penalize_sci_irq(bus_irq, trigger, polarity);
 
/*
 * stash over-ride to indicate we've been here diff --git 
a/drivers/acpi/pci_link.c b/drivers/acpi/pci_link.c index 
cfd7581cc19f..b09ad554430a 100644
--- a/drivers/acpi/pci_link.c
+++ b/drivers/acpi/pci_link.c
@@ -826,6 +826,22 @@ void acpi_penalize_isa_irq(int irq, int active)  }
 
 /*
+ * Penalize IRQ used by ACPI SCI. If ACPI SCI pin attributes conflict 
+with
+ * PCI IRQ attributes, mark ACPI SCI as ISA_ALWAYS so it won't be use 
+for
+ * PCI IRQs.
+ */
+void acpi_penalize_sci_irq(int irq, int trigger, int polarity) {
+   if (irq >= 0 && irq < ARRAY_SIZE(acpi_irq_penalty)) {
+   if (trigger != ACPI_MADT_TRIGGER_LEVEL ||
+   polarity != ACPI_MADT_POLARITY_ACTIVE_LOW)
+   acpi_irq_penalty[irq] += PIRQ_PENALTY_ISA_ALWAYS;
+   else
+   acpi_irq_penalty[irq] += PIRQ_PENALTY_PCI_USING;
+   }
+}
+
+/*
  * Over-ride default table to reserve additional IRQs for use by ISA
  * e.g. acpi_irq_isa=5
  * Useful for telling ACPI how not to interfere with your ISA sound card.
diff --git a/include/linux/acpi.h b/include/linux/acpi.h index 
d2445faf..0b2394f61af4 100644
--- a/include/linux/acpi.h
+++ b/include/linux/acpi.h
@@ -221,7 +221,7 @@ struct pci_dev;
 
 int acpi_pci_irq_enable (struct pci_dev *dev);  void acpi_penalize_isa_irq(int 
irq, int active);
-
+void acpi_penalize_sci_irq(int irq, int trigger, int polarity);
 void acpi_pci_irq_disable (struct pci_dev *dev);
 
 extern int ec_read(u8 addr, u8 *val);
--
1.7.10.4

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

Title:
  [Hyper-V] Legacy network adapter is not detected

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Vivid:
  In Progress

Bug description:
  Issue description:
  Attaching a Legacy network adapter to a VM will not be detected on the VM 
side.
  This is not the case with synthetic adapters, which are properly identified.

  Steps to Reproduce: 
  1. Add a Legacy Network adapter to the VM
  2. Boot the vm
  3. Verify the identified network adapter, the legacy NIC is missing

  Versions details:
  Windows Server Host Edition: Microsoft Windows Server 2012 R2 Datacenter 
build 9600 and Microsoft Windows Server 2008 R2 Standard  SP 1 build 7601
  Distribution name and release: Ubuntu Vivid Vervet
  Kernel version: Linux ubuntu31 3.19.0-11-generic #11lp14233432v201504021617 
SMP

  
  Hyper-V side:
  PS> Get-VMNetworkAdapter -VMName vivid1

  Name   IsManagementOs VMName SwitchName MacAddress   Status 
IPAddresses
     -- -- -- --   -- 
---
  Network AdapterFalse  vivid1 external   00155D06332D {Ok}   
{IP, fe80::215:5dff:fe06:332d}
  Legacy Network Adapter False  vivid1 external   00155D063336 {Ok}   {}

  On the VM Side:
  root@ubuntu31:~# ls /sys/class/net/
  eth0  lo

  eth0 has the MAC of the Network Adapter, which is the synthetic
  interface.

  This has been verified with also 1 vCPU or with irqbalancer daemon disabled, 
as that is a common requirements when using legacy adapters.
  --- 
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 May  6 08:17 seq
   crw-rw 1 root audio 116, 33 May  6 08:17 timer
  AplayDevices: Error: [Errno 2] No such file or directory
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 15.04
  HibernationDevice: RESUME=/dev/mapper/ubuntu1504--vg-swap_1
  InstallationDate: Installed on 2015-04-23 (12 days ago)
  InstallationMedia: Ubuntu-Server 15.04 "Vivid Vervet" - Release amd64 
(20150422)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  Lsusb: Error: command ['lsusb'] failed with exit code 1: unable to initialize 
libusb: -99
  MachineType: Microsoft Corporation 

[Kernel-packages] [Bug 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Colin Law
02f1f2170d2831b3233e91091c60a66622f29e82
http://kernel.ubuntu.com/~jsalisbury/lp1491467
linux-image-3.19.0-031900-generic_3.19.0-031900.201509021605_amd64.deb

is BAD
that is it shows the bug.

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1491467/+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 1491424] Re: [Packard Bell EasyNote ENTF71BM] System will hang on reboot / poweroff

2015-09-02 Thread Joseph Salisbury
Did this issue start happening after an update/upgrade?  Was there a
prior kernel version where you were not having this particular problem?

Would it be possible for you to test the latest upstream kernel? Refer
to https://wiki.ubuntu.com/KernelMainlineBuilds . Please test the latest
v4.2 kernel[0].

If this bug is fixed in the mainline kernel, please add the following
tag 'kernel-fixed-upstream'.

If the mainline kernel does not fix this bug, please add the tag:
'kernel-bug-exists-upstream'.

Once testing of the upstream kernel is complete, please mark this bug as
"Confirmed".


Thanks in advance.

[0] http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/

** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  [Packard Bell EasyNote ENTF71BM] System will hang on reboot / poweroff

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Seems similar to
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1341925 and
  https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1346269

  System will hang at dw_dmac INTL9C60:00: invalid resource

  Adding the following to /etc/modprobe.d/blacklist.conf bypasses the issue and 
the laptop works without issue:
  blacklist dw_dmac
  blacklist dw_dmac_core

  Version: Ubuntu 3.19.0-15.15-generic 3.19.3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491424/+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 1490130] Re: Elantech touchpad stops working after suspend

2015-09-02 Thread Harris Anggara
this issue start happening since i bought this laptop and installed ubuntu 
15.04 on this. i also tried ubuntu 14.04  but this issue still exist.
i dont remember how many kernel i tried but none of them can solve this issue.

note: modprobe psmouse will bring the psmouse module back (checked in
lsmod result) but touchpad still freezing.

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

Title:
  Elantech touchpad stops working after suspend

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  i have asus a455ld i5 5200u running kubuntu 15.04 with kernel 
4.0.8-040008-generic. 
  touchpad is recognized as elantech version 4. everything was fine until my 
notebook go to suspend and resume without touchpad working.
  I tried :
  modprobe -r psmouse
  modprobe psmouse

  it only work before suspend.
  execute those commands after resume from suspend is not working.

  the last thing i tried is this.

  when i use this command before suspend :

  insmod
  /lib/modules/4.0.8-040008-generic/kernel/drivers/input/mouse/psmouse.ko

  these appear in the dmesg:

  [  820.207105] psmouse serio1: elantech: assuming hardware version 4 (with 
firmware version 0x381f00)
  [  820.70] psmouse serio1: elantech: Synaptics capabilities query result 
0x10, 0x14, 0x0e.
  [  820.294698] input: ETPS/2 Elantech Touchpad as 
/devices/platform/i8042/serio1/input/input146

  but when i use the command after suspend, there is nothing any output
  in the dmesg.

  i tried all ubuntu varian and opensuse 13.2 live usb, the result is the same. 
  but in windows 10,  touchpad still active after suspend.
  --- 
  ApportVersion: 2.17.2-0ubuntu1.3
  Architecture: amd64
  CurrentDesktop: MATE
  DistroRelease: Ubuntu 15.04
  InstallationDate: Installed on 2015-06-20 (69 days ago)
  InstallationMedia: Kubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  Package: linux (not installed)
  Tags:  vivid
  Uname: Linux 4.0.8-040008-generic x86_64
  UnreportableReason: The running kernel is not an Ubuntu kernel
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm bumblebee cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1490130/+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 1490606] Re: linux: 3.19.0-28.30 -proposed tracker

2015-09-02 Thread Adam Conrad
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Confirmed => Fix Released

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

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

Title:
  linux: 3.19.0-28.30 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 31. August 2015 15:07 UTC
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-phase-changed:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490606/+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 1491494] Re: Ubuntu 14.04.03 LPAR hits kernel oops after serial adapter is removed from profile

2015-09-02 Thread Luciano Chavez
** Package changed: ubuntu => linux (Ubuntu)

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Taco Screen team (taco-screen-team)

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

Title:
  Ubuntu 14.04.03 LPAR hits kernel oops after serial adapter is removed
  from profile

Status in linux package in Ubuntu:
  New

Bug description:
  -- Problem Description --

  The failure related to the BELL-3 (2 port-Async EIA-232 adapter).
  Ubuntu always hit exception when the adapter is not present. See my
  test scenarios below.

  Test #1: Boot Ubuntu with BELL-3 adapter 
  ===

  - The Ubuntu LPAR was running with the BELL-3 (2 port-Async EIA-232 adapter) 
before. So I assigned the BELL-3 adapter to Ubuntu LPAR profile and powered on 
the LPAR. 
  => Ubuntu boot fine this time.

   
  Test #2: Boot Ubuntu with BELL-3 adapter removed from LPAR profile
  ===

  - I powered down the Ubuntu partition and removed the BELL-3 adapter from 
LPAR profile then powered on the LPAR.
  => Ubuntu hit the exception.

  Elapsed time since release of system processors: 0 mins 9 secs
  error: no suitable video mode found.
  OF stdout device is: /vdevice/vty@3000
  Preparing to boot Linux version 3.19.0-23-generic (buildd@denneed03) (gcc 
version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #24~14.04.1-Ubuntu SMP Wed Jul 8 
11:17:19 UTC 2015 (Ubuntu 3.19.0-23.24~14.04.1-generic 3.19.8-ckt2)
  Detected machine type: 0101
  Max number of cores passed to firmware: 256 (NR_CPUS = 2048)
  Calling ibm,client-architecture-support... done
  command line: BOOT_IMAGE=/boot/vmlinux-3.19.0-23-generic 
root=UUID=768190e7-f633-4c63-a1e3-588d12dea265 ro quiet splash vt.handoff=7
  memory layout at init:
memory_limit :  (16 MB aligned)
alloc_bottom : 0b42
alloc_top: 1000
alloc_top_hi : 1000
rmo_top  : 1000
ram_top  : 1000
  instantiating rtas at 0x0ecb... done
  prom_hold_cpus: skipped
  copying OF device tree...
  Building dt strings...
  Building dt structure...
  Device tree strings 0x0b43 -> 0x0b4316b1
  Device tree struct  0x0b44 -> 0x0b47
  Calling quiesce...
  returning from prom_init
   -> smp_release_cpus()
  spinning_secondaries = 15
   <- smp_release_cpus()
   <- setup_system()
  [0.661510] 
/build/linux-lts-vivid-uV14Ja/linux-lts-vivid-3.19.0/drivers/rtc/hctosys.c: 
unable to open rtc device (rtc0)
  [0.672826] sd 0:0:1:0: [sda] Assuming drive cache: write through
  [4.658302] device-mapper: table: 252:0: multipath: error getting device
  [4.691990] device-mapper: table: 252:0: multipath: error getting device
  [4.934034] device-mapper: table: 252:0: multipath: error getting device
  [4.951977] device-mapper: table: 252:0: multipath: error getting device
   * Discovering and coalescing multipaths...  [ OK 
] 
  Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
   * Starting AppArmor profiles[ OK 
] 
  Loading the saved-state of the serial devices... 
  [5.109665] Unable to handle kernel paging request for data at address 
0xd803
  [5.109677] Faulting instruction address: 0xc060fec4
  [5.109685] Oops: Kernel access of bad area, sig: 11 [#1]
  [5.109691] SMP NR_CPUS=2048 NUMA pSeries
  [5.109699] Modules linked in: dm_round_robin dm_multipath scsi_dh 
pseries_rng rtc_generic knem(OE) nfsd auth_rpcgss nfs_acl nfs lockd grace 
sunrpc fscache rdma_ucm(OE) ib_ucm(OE) rdma_cm(OE) iw_cm(OE) configfs 
ib_ipoib(OE) ib_cm(OE) ib_uverbs(OE) ib_umad(OE) mlx5_ib(OE) mlx5_core(OE) 
mlx4_ib(OE) ib_sa(OE) ib_mad(OE) ib_core(OE) ib_addr(OE) mlx4_en(OE) 
mlx4_core(OE) mlx_compat(OE)
  [5.109759] CPU: 1 PID: 1816 Comm: setserial Tainted: G   OE  
3.19.0-23-generic #24~14.04.1-Ubuntu
  [5.109769] task: c000f389c880 ti: c000f0528000 task.ti: 
c000f0528000
  [5.109777] NIP: c060fec4 LR: c0617498 CTR: 
c060fe20
  [5.109785] REGS: c000f052b6b0 TRAP: 0300   Tainted: G   OE   
(3.19.0-23-generic)
  [5.109793] MSR: 80009033   CR: 84002022  
XER: 
  [5.109814] CFAR: c0008468 DAR: d803 DSISR: 4200 
SOFTE: 1 
  GPR00: c0617498 c000f052b930 c144c700 00bf 
  GPR04: d803 00bf c000f399 0141 
  GPR08: c0611d20 c13539e0 d800 c1351ba8 
  GPR12: c060fe20 ce830900   
  GPR16:     
  GPR20: 007d 0040   
  GPR24: 

[Kernel-packages] [Bug 1490785] Re: linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

2015-09-02 Thread Brad Figg
** Description changed:

  This bug is for tracking the 3.19.0-28.30~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 01. September 2015 01:02 UTC
  kernel-stable-master-bug:1490606
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-phase-changed:Tuesday, 01. September 2015 18:01 UTC
+ kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC

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

Title:
  linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 01. September 2015 01:02 UTC
  kernel-stable-master-bug:1490606
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-phase-changed:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490785/+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 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Joseph Salisbury
I'd like to perform a bisect to figure out what commit caused this
regression. We need to identify the earliest kernel where the issue
started happening as well as the latest kernel that did not have this
issue.

Before we start the bisect, can you first confirm that 3.19 final does
not have the bug an 4.0-rc1 does have it?  The two kernels can be
downloaded from:

v3.19 final: http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19-vivid/
4.0-rc1: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.0-rc1-vivid/

Thanks in advance!

** Changed in: linux (Ubuntu)
   Importance: Undecided => Medium

** Also affects: linux (Ubuntu Wily)
   Importance: Medium
   Status: Confirmed

** Changed in: linux (Ubuntu Wily)
 Assignee: (unassigned) => Joseph Salisbury (jsalisbury)

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

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

** Also affects: linux via
   http://bugzilla.kernel.org/show_bug.cgi?id=53071
   Importance: Unknown
   Status: Unknown

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1491467/+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 1491484] [NEW] Anker keyboard doesn't send key events to krillin

2015-09-02 Thread Brendan Donegan
Public bug reported:

I have an Anker BT keyboard which seems to work fine on the Nexus 4 with
Android, but when I use it with Krillin and Ubuntu it doesn't seem to
receive keypresses. In fact I have used a hack boot.img to get it to
even connect. The exact model is : http://www.amazon.co.uk/Compact-
Wireless-Bluetooth-Keyboard-
Rechargeable/dp/B00PIMRCFG/ref=sr_1_2?ie=UTF8=1441209196=8-2=anker+bluetooth+keyboard

phablet@ubuntu-phablet:~$ system-image-cli -i
current build number: 114
device name: krillin
channel: ubuntu-touch/rc-proposed/bq-aquaris.en
last update: 2015-09-02 08:01:15
version version: 114
version ubuntu: 20150902
version device: 20150821-736d127
version custom: 20150821-887-33-32-vivid

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

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

Title:
  Anker keyboard doesn't send key events to krillin

Status in bluez package in Ubuntu:
  New

Bug description:
  I have an Anker BT keyboard which seems to work fine on the Nexus 4
  with Android, but when I use it with Krillin and Ubuntu it doesn't
  seem to receive keypresses. In fact I have used a hack boot.img to get
  it to even connect. The exact model is : http://www.amazon.co.uk
  /Compact-Wireless-Bluetooth-Keyboard-
  
Rechargeable/dp/B00PIMRCFG/ref=sr_1_2?ie=UTF8=1441209196=8-2=anker+bluetooth+keyboard

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 114
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-09-02 08:01:15
  version version: 114
  version ubuntu: 20150902
  version device: 20150821-736d127
  version custom: 20150821-887-33-32-vivid

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1491484/+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 1491497] [NEW] Not able to see wifi options with Qualcomm Atheros Device (rev 30) as Network Controller

2015-09-02 Thread Amit
Public bug reported:

I'm not able to see wifi options. I'm using Qualcomm Atheros Device (rev
30) as Network Controller in my Acer laptop.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.19.0-26-generic 3.19.0-26.28~14.04.1
ProcVersionSignature: Ubuntu 3.19.0-26.28~14.04.1-generic 3.19.8-ckt4
Uname: Linux 3.19.0-26-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.14.1-0ubuntu3.12
Architecture: amd64
CurrentDesktop: Unity
Date: Wed Sep  2 21:46:42 2015
InstallationDate: Installed on 2015-09-01 (1 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
SourcePackage: linux-lts-vivid
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-lts-vivid (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

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

Title:
  Not able to see wifi options with Qualcomm Atheros Device (rev 30) as
  Network Controller

Status in linux-lts-vivid package in Ubuntu:
  New

Bug description:
  I'm not able to see wifi options. I'm using Qualcomm Atheros Device
  (rev 30) as Network Controller in my Acer laptop.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.19.0-26-generic 3.19.0-26.28~14.04.1
  ProcVersionSignature: Ubuntu 3.19.0-26.28~14.04.1-generic 3.19.8-ckt4
  Uname: Linux 3.19.0-26-generic x86_64
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.12
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Sep  2 21:46:42 2015
  InstallationDate: Installed on 2015-09-01 (1 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  SourcePackage: linux-lts-vivid
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-vivid/+bug/1491497/+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 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Joseph Salisbury
I started a kernel bisect between v3.19 final and v4.0-rc1. The kernel
bisect will require testing of about 7-10 test kernels.

I built the first test kernel, up to the following commit:
02f1f2170d2831b3233e91091c60a66622f29e82

The test kernel can be downloaded from:
http://kernel.ubuntu.com/~jsalisbury/lp1491467

Can you test that kernel and report back if it has the bug or not?  I
will build the next test kernel based on your test results.

Thanks in advance

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1491467/+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 1490785] Re: linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

2015-09-02 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/linux-lts-vivid

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

Title:
  linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 01. September 2015 01:02 UTC
  kernel-stable-master-bug:1490606
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-phase-changed:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490785/+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 1490564] Re: linux: 4.2.0-7.7 -proposed tracker

2015-09-02 Thread Brad Figg
** Description changed:

  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
+ kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1491467] [NEW] kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Colin Law
Public bug reported:

On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
takes 100% of one core of CPU due to GPE13 interrupt storm

See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

The bug can be identified by repeatedly running 
cat /sys/firmware/acpi/interrupts/gpe13
where a rapidly increasing count will be seen.

Workaround:
sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
disables it until reboot
Using 
sudo crontab -e
and adding the line
@reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
works around for subsequent boots.

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.1.0-3-generic 4.1.0-3.3
ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
Uname: Linux 4.1.0-3-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  colinl 1699 F pulseaudio
 /dev/snd/controlC1:  colinl 1699 F pulseaudio
CurrentDesktop: Unity
Date: Wed Sep  2 16:03:19 2015
InstallationDate: Installed on 2014-10-21 (316 days ago)
InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
MachineType: FUJITSU LIFEBOOK A544
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
RelatedPackageVersions:
 linux-restricted-modules-4.1.0-3-generic N/A
 linux-backports-modules-4.1.0-3-generic  N/A
 linux-firmware   1.147
RfKill:
 0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
dmi.bios.date: 04/01/2015
dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
dmi.bios.version: Version 1.19
dmi.board.name: FJNBB35
dmi.board.vendor: FUJITSU
dmi.chassis.type: 10
dmi.chassis.vendor: FUJITSU
dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
dmi.product.name: LIFEBOOK A544
dmi.sys.vendor: FUJITSU

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


** Tags: amd64 apport-bug wily

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in linux package in Ubuntu:
  New

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

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

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

[Kernel-packages] [Bug 1491483] [NEW] This wireless driver hasn't supported yet: Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)

2015-09-02 Thread Noor Maulida
Public bug reported:

I got fresh install Ubuntu 14.04 LTS and found that my wireless driver (Network 
controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)) is not 
detected by system. I have done some googling activity and trying all method in 
internet but still no result. In some forum:
http://askubuntu.com/questions/652199/wireless-not-there-on-a-aspire-e-15
http://askubuntu.com/questions/651341/how-to-enable-wifi-connection-in-ubuntu-14-04-lts
I found that my wireless driver hasn't supported yet. Please fix it

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.16.0-30-generic 3.16.0-30.40~14.04.1 [modified: 
boot/vmlinuz-3.16.0-30-generic]
ProcVersionSignature: Ubuntu 3.16.0-30.40~14.04.1-generic 3.16.7-ckt3
Uname: Linux 3.16.0-30-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.12
Architecture: amd64
CurrentDesktop: Unity
Date: Wed Sep  2 22:43:12 2015
InstallationDate: Installed on 2015-08-31 (1 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 (20150218.1)
SourcePackage: linux-lts-utopic
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-lts-utopic (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

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

Title:
  This wireless driver hasn't supported yet: Network controller [0280]:
  Qualcomm Atheros Device [168c:0042] (rev 30)

Status in linux-lts-utopic package in Ubuntu:
  New

Bug description:
  I got fresh install Ubuntu 14.04 LTS and found that my wireless driver 
(Network controller [0280]: Qualcomm Atheros Device [168c:0042] (rev 30)) is 
not detected by system. I have done some googling activity and trying all 
method in internet but still no result. In some forum:
  http://askubuntu.com/questions/652199/wireless-not-there-on-a-aspire-e-15
  
http://askubuntu.com/questions/651341/how-to-enable-wifi-connection-in-ubuntu-14-04-lts
  I found that my wireless driver hasn't supported yet. Please fix it

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.16.0-30-generic 3.16.0-30.40~14.04.1 [modified: 
boot/vmlinuz-3.16.0-30-generic]
  ProcVersionSignature: Ubuntu 3.16.0-30.40~14.04.1-generic 3.16.7-ckt3
  Uname: Linux 3.16.0-30-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.12
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Sep  2 22:43:12 2015
  InstallationDate: Installed on 2015-08-31 (1 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64 
(20150218.1)
  SourcePackage: linux-lts-utopic
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-lts-utopic/+bug/1491483/+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 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Colin Law
I can confirm that 
v3.19 final: http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19-vivid/ does 
not show the problem

4.0-rc1: http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.0-rc1-vivid/
and
http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/
both do show the problem

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1491467/+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 1487524] Re: Broadcom BCM43602 not seeing 5Ghz range

2015-09-02 Thread Joseph Salisbury
** Also affects: linux via
   http://bugzilla.kernel.org/show_bug.cgi?id=100201
   Importance: Unknown
   Status: Unknown

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

Title:
  Broadcom BCM43602 not seeing 5Ghz range

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  Triaged

Bug description:
  On a MacbookPro12,1 (2015 model), the wireless works with the brcmfmac
  on a wily install out of the box, but can't see any APs on the 5GHz
  range even though there are APs broadcasting on 5Ghz.

  03:00.0 Network controller: Broadcom Corporation BCM43602 802.11ac Wireless 
LAN SoC (rev 01)
Subsystem: Apple Inc. Device 0152
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: brcmfmac

  $ sudo iwlist wlp3s0 scan|grep Freq
  Frequency:2.412 GHz (Channel 1)
  Frequency:2.422 GHz (Channel 3)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3 [modified: 
boot/vmlinuz-4.1.0-3-generic]
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu7
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC3:  jbarnett   1545 F pulseaudio
   /dev/snd/controlC2:  jbarnett   1545 F pulseaudio
   /dev/snd/controlC1:  jbarnett   1545 F pulseaudio
   /dev/snd/controlC0:  jbarnett   1545 F pulseaudio
  CurrentDesktop: GNOME
  Date: Fri Aug 21 08:46:15 2015
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=dd225ec0-47f4-49d8-a51c-a2547f8eb945
  InstallationDate: Installed on 2015-08-21 (0 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150819)
  MachineType: Apple Inc. MacBookPro11,4
  ProcEnviron:
   TERM=xterm-256color
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.1.0-3-generic.efi.signed 
root=/dev/mapper/ubuntu--gnome--vg-root ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.146
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  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: 06/05/2015
  dmi.bios.vendor: Apple Inc.
  dmi.bios.version: MBP114.88Z.0172.B04.1506051511
  dmi.board.name: Mac-06F11FD93F0323C5
  dmi.board.vendor: Apple Inc.
  dmi.board.version: MacBookPro11,4
  dmi.chassis.type: 9
  dmi.chassis.vendor: Apple Inc.
  dmi.chassis.version: Mac-06F11FD93F0323C5
  dmi.modalias: 
dmi:bvnAppleInc.:bvrMBP114.88Z.0172.B04.1506051511:bd06/05/2015:svnAppleInc.:pnMacBookPro11,4:pvr1.0:rvnAppleInc.:rnMac-06F11FD93F0323C5:rvrMacBookPro11,4:cvnAppleInc.:ct9:cvrMac-06F11FD93F0323C5:
  dmi.product.name: MacBookPro11,4
  dmi.product.version: 1.0
  dmi.sys.vendor: Apple Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1487524/+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 1487085] Re: Ubuntu 14.04.3 LTS Crash in notifier_call_chain after boot

2015-09-02 Thread bugproxy
** Tags removed: bot-comment bugnameltc-129216 severity-critical

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

Title:
  Ubuntu 14.04.3 LTS Crash in notifier_call_chain after boot

Status in linux package in Ubuntu:
  New
Status in linux source package in Vivid:
  Fix Committed

Bug description:
  SRU Justification:
  [Impact]
  Users of 3.19 kernel with power8 machines get a kernel crash on boot.

  [Test Case]
  Boot system.

  [Fix]
  commit 792f96e9a769b799a2944e9369e4ea1e467135b2 needed to be backported in 
addition to d7cf83fcaf1b1668201eae4cdd6e6fe7a2448654. Our 3.19 kernel had a 
partial backport of the first patch.

  --

  
  ---Problem Description---
  Installed Ubuntu 14.04.3 LTS on Palmetto and its crashing after booting to 
login.
  This happens every time I boot Ubuntu 14.04.3 LTS.  I've reinstalled Ubuntu 
and replaced the hard disk as well and re-installed.  Still crashing.

  ---uname output---
  Linux paul40 3.19.0-26-generic #28~14.04.1-Ubuntu SMP Wed Aug 12 14:10:52 UTC 
2015 ppc64le ppc64le ppc64le GNU/Linux

  Machine Type = Palmetto

  ---System Hang---
   Ubuntu OS crashes and cannot access host. Must reboot system

  ---Steps to Reproduce---
   Boot system

  Oops output:
   [   33.132376] Unable to handle kernel paging request for data at address 
0x200
  [   33.132565] Faulting instruction address: 0xc00dbc60
  [   33.133422] Oops: Kernel access of bad area, sig: 11 [#1]
  [   33.134410] SMP NR_CPUS=2048 NUMA PowerNV
  [   33.134478] Modules linked in: ast ttm drm_kms_helper joydev mac_hid 
drm hid_generic usbhid hid syscopyarea sysfillrect sysimgblt i2c_algo_bit 
ofpart cmdlinepart at24 uio_pdrv_genirq powernv_flash mtd ipmi_powernv 
powernv_rng opal_prd ipmi_msghandler uio uas usb_storage ahci libahci
  [   33.139112] CPU: 24 PID: 0 Comm: swapper/24 Not tainted 
3.19.0-26-generic #28~14.04.1-Ubuntu
  [   33.139943] task: c13cccb0 ti: c00fff70 task.ti: 
c1448000
  [   33.141642] NIP: c00dbc60 LR: c00dbd94 CTR: 

  [   33.142605] REGS: c00fff703980 TRAP: 0300   Not tainted  
(3.19.0-26-generic)
  [   33.143417] MSR: 90009033   CR: 
28002888  XER: 
  [   33.144244] CFAR: c0008468 DAR: 0200 DSISR: 
4000 SOFTE: 0
  GPR00: c00dbd94 c00fff703c00 c144cc00 c15f03c0
  GPR04: 0007 c15f03b8  
  GPR08:  0200 c006c394 90001003
  GPR12: 2200 cfb8d800 0058 
  GPR16: c1448000 c1448000 c1448080 c0e9a880
  GPR20: c1448080 0001 0002 0012
  GPR24: c00f1e432200   c15f03b8
  GPR28: 0007  c15f03c0 
  [   33.157013] NIP [c00dbc60] notifier_call_chain+0x70/0x100
  [   33.157818] LR [c00dbd94] atomic_notifier_call_chain+0x44/0x60
  [   33.162090] Call Trace:
  [   33.162845] [c00fff703c00] [0008] 0x8 (unreliable)
  [   33.163644] [c00fff703c50] [c00dbd94] 
atomic_notifier_call_chain+0x44/0x60
  [   33.164647] [c00fff703c90] [c006f2a8] 
opal_message_notify+0xa8/0x100
  [   33.165476] [c00fff703d00] [c00dbc88] 
notifier_call_chain+0x98/0x100
  [   33.167007] [c00fff703d50] [c00dbd94] 
atomic_notifier_call_chain+0x44/0x60
  [   33.167816] [c00fff703d90] [c006f654] 
opal_do_notifier.part.5+0x74/0xa0
  [   33.172166] [c00fff703dd0] [c006f6d8] 
opal_interrupt+0x58/0x70
  [   33.172997] [c00fff703e10] [c01273d0] 
handle_irq_event_percpu+0x90/0x2b0
  [   33.174507] [c00fff703ed0] [c0127658] 
handle_irq_event+0x68/0xd0
  [   33.175312] [c00fff703f00] [c012baf4] 
handle_fasteoi_irq+0xe4/0x240
  [   33.176124] [c00fff703f30] [c01265c8] 
generic_handle_irq+0x58/0x90
  [   33.176936] [c00fff703f60] [c0010f10] __do_irq+0x80/0x190
  [   33.182406] [c00fff703f90] [c002476c] call_do_irq+0x14/0x24
  [   33.183258] [c144ba30] [c00110c0] do_IRQ+0xa0/0x120
  [   33.184072] [c144ba90] [c00025d8] 
hardware_interrupt_common+0x158/0x180
  [   33.184907] --- interrupt: 501 at arch_local_irq_restore+0x5c/0x90
  [   33.184907] LR = arch_local_irq_restore+0x40/0x90
  [   33.186473] [c144bd80] [c00f2ae19808] 0xc00f2ae19808 
(unreliable)
  [   33.188024] [c144bda0] [c085d5d8] 
cpuidle_enter_state+0xa8/0x260
  [   33.192695] 

[Kernel-packages] [Bug 1485162] Re: linux-ti-omap4: 3.2.0-1470.91 -proposed tracker

2015-09-02 Thread Adam Conrad
** Changed in: kernel-sru-workflow/upload-to-ppa
   Status: New => Fix Released

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

Title:
  linux-ti-omap4: 3.2.0-1470.91 -proposed tracker

Status in Kernel SRU Workflow:
  In Progress
Status in Kernel SRU Workflow certification-testing series:
  Invalid
Status in Kernel SRU Workflow package-testing series:
  Fix Released
Status in Kernel SRU Workflow prepare-package series:
  Fix Released
Status in Kernel SRU Workflow prepare-package-meta series:
  Fix Released
Status in Kernel SRU Workflow promote-to-proposed series:
  Fix Released
Status in Kernel SRU Workflow promote-to-security series:
  Confirmed
Status in Kernel SRU Workflow promote-to-updates series:
  Confirmed
Status in Kernel SRU Workflow regression-testing series:
  Fix Released
Status in Kernel SRU Workflow security-signoff series:
  Fix Released
Status in Kernel SRU Workflow upload-to-ppa series:
  Fix Released
Status in Kernel SRU Workflow verification-testing series:
  Fix Released
Status in linux-ti-omap4 package in Ubuntu:
  Invalid
Status in linux-ti-omap4 source package in Precise:
  New

Bug description:
  This bug is for tracking the 3.2.0-1470.91 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Saturday, 15. August 2015 03:01 UTC
  kernel-stable-master-bug:1485081
  kernel-stable-Certification-testing-end:Monday, 17. August 2015 19:02 UTC
  kernel-stable-Prepare-package-end:Monday, 17. August 2015 23:01 UTC
  kernel-stable-Promote-to-proposed-start:Monday, 17. August 2015 23:01 UTC
  kernel-stable-Promote-to-proposed-end:Tuesday, 18. August 2015 14:00 UTC
  kernel-stable-Security-signoff-start:Tuesday, 18. August 2015 15:01 UTC
  kernel-stable-Regression-testing-start:Tuesday, 18. August 2015 15:01 UTC
  proposed-announcement-sent:True
  kernel-stable-Verification-testing-start:Tuesday, 18. August 2015 15:01 UTC
  kernel-stable-Verification-testing-end:Monday, 24. August 2015 16:01 UTC
  kernel-stable-Regression-testing-end:Monday, 24. August 2015 16:01 UTC
  kernel-stable-Security-signoff-end:Friday, 28. August 2015 08:01 UTC
  kernel-stable-phase:CopyToUpdates
  kernel-stable-phase-changed:Friday, 28. August 2015 09:01 UTC
  kernel-stable-Promote-to-updates-start:Friday, 28. August 2015 09:01 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1485162/+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 1487889] Re: After disconnnecting from car bluetooth, audio is still routed to bluetooth

2015-09-02 Thread Bill Filler
** Changed in: canonical-devices-system-image
Milestone: None => ww40-2015

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Bill Filler (bfiller)

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

** Changed in: bluez (Ubuntu)
 Assignee: (unassigned) => Simon Fels (morphis)

** Changed in: bluez (Ubuntu)
   Importance: Undecided => Critical

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

Title:
  After disconnnecting from car bluetooth, audio is still routed to
  bluetooth

Status in Canonical System Image:
  Confirmed
Status in bluez package in Ubuntu:
  New
Status in telephony-service package in Ubuntu:
  New

Bug description:
  MX4 r96

  This has been happening fro a few weeks
  Phone automatically connects to the car, you don't have to make or receive a 
call
  Leave the car and disconnect
  Place a call
  The audio starts out using the phone as expected, after a few seconds the 
audio switches to bluetooth
  You can manually change the audio in the UI
  This happens until you reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1487889/+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 1485173] Re: linux-lts-trusty: 3.13.0-63.104~precise1 -proposed tracker

2015-09-02 Thread Brad Figg
** Changed in: kernel-sru-workflow/package-testing
   Status: Confirmed => Fix Released

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

** Tags added: qa-testing-passed

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

** Changed in: kernel-sru-workflow/promote-to-security
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/promote-to-updates
   Status: New => Confirmed

** Description changed:

  This bug is for tracking the 3.13.0-63.104~precise1 upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Saturday, 15. August 2015 05:03 UTC
  kernel-stable-master-bug:1485102
  kernel-stable-Prepare-package-end:Sunday, 16. August 2015 12:02 UTC
  kernel-stable-Promote-to-proposed-start:Sunday, 16. August 2015 12:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 20. August 2015 00:33 UTC
- kernel-stable-phase:Verification & Testing
- kernel-stable-phase-changed:Thursday, 20. August 2015 02:01 UTC
  kernel-stable-Verification-testing-start:Thursday, 20. August 2015 02:01 UTC
  kernel-stable-Certification-testing-start:Thursday, 20. August 2015 02:01 UTC
  kernel-stable-Security-signoff-start:Thursday, 20. August 2015 02:01 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Thursday, 20. August 2015 02:01 UTC
  kernel-stable-Certification-testing-end:Friday, 28. August 2015 05:01 UTC
  kernel-stable-Security-signoff-end:Friday, 28. August 2015 08:01 UTC
+ kernel-stable-phase:CopyToUpdates
+ kernel-stable-phase-changed:Wednesday, 02. September 2015 16:30 UTC
+ kernel-stable-Promote-to-updates-start:Wednesday, 02. September 2015 16:30 UTC
+ kernel-stable-Regression-testing-end:Wednesday, 02. September 2015 16:30 UTC

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

Title:
  linux-lts-trusty: 3.13.0-63.104~precise1 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.13.0-63.104~precise1 upload package.
  This bug will contain status and testing results related to that
  upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Saturday, 15. August 2015 05:03 UTC
  kernel-stable-master-bug:1485102
  kernel-stable-Prepare-package-end:Sunday, 16. August 2015 12:02 UTC
  kernel-stable-Promote-to-proposed-start:Sunday, 16. August 2015 12:02 UTC
  kernel-stable-Promote-to-proposed-end:Thursday, 20. August 2015 00:33 UTC
  kernel-stable-Verification-testing-start:Thursday, 20. August 2015 02:01 UTC
  kernel-stable-Certification-testing-start:Thursday, 20. August 2015 02:01 UTC
  kernel-stable-Security-signoff-start:Thursday, 20. August 2015 02:01 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Thursday, 20. August 2015 02:01 UTC
  kernel-stable-Certification-testing-end:Friday, 28. August 2015 05:01 UTC
  kernel-stable-Security-signoff-end:Friday, 28. August 2015 08:01 UTC
  kernel-stable-phase:CopyToUpdates
  kernel-stable-phase-changed:Wednesday, 02. September 2015 16:30 UTC
  kernel-stable-Promote-to-updates-start:Wednesday, 02. September 2015 16:30 UTC
  kernel-stable-Regression-testing-end:Wednesday, 02. September 2015 16:30 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1485173/+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 1491510] Missing required logs.

2015-09-02 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
>From a terminal window please run:

apport-collect 1491510

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

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

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

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

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

Title:
  Touchpad not working

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  touchpad not working after installing upgrade from 12.04 to 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491510/+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 1490035] Re: [i915_bpo/SKL] Display corrupted after resume from suspend

2015-09-02 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/trusty-proposed/linux-lts-vivid

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

Title:
  [i915_bpo/SKL] Display corrupted after resume from suspend

Status in HWE Next:
  Fix Committed
Status in linux package in Ubuntu:
  Triaged
Status in linux source package in Vivid:
  Fix Committed

Bug description:
  A new video BIOS code from Intel causes a regression on Skylake where
  the screen gets corrupted after resuming from suspend. This is a
  blocker for OEM's, since new BIOS releases will include this VBIOS.
  We've helped the vendor to verify a patch to fix it, and it's already
  been queued for 4.3:

  commit 39d9b85a4d4fa1642663ca0d208b5c246a3d6f50
  Author: Gary Wang 
  Date:   Fri Aug 28 16:40:34 2015 +0800

  drm/i915: set CDCLK if DPLL0 enabled during resuming from S3
  
  Since BIOS RC 1.4 it would enable CDCLK PLL during BIOS S3 resume, then
  driver needs to set CDCLK to avoid display corruption if DPLL0 enabled.
  
  References: https://bugs.freedesktop.org/show_bug.cgi?id=91697
  Reviewed-by: Rodrigo Vivi 
  Reviewed-by: Damien Lespiau 
  Reviewed-by: Cooper Chiou 
  Reviewed-by: Wei Shun Chang 
  Tested-by: Gary Wang 
  Cc: Daniel Vetter 
  Cc: Gavin Hindman 
  Cc: Chris Wilson 
  Cc: Xiong Y Zhang 
  Signed-off-by: Gary Wang 
  Signed-off-by: Jani Nikula 

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1490035/+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 1490785] Re: linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

2015-09-02 Thread Adam Conrad
** Changed in: kernel-sru-workflow/promote-to-proposed
   Status: Confirmed => Fix Released

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

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

Title:
  linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 01. September 2015 01:02 UTC
  kernel-stable-master-bug:1490606
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-phase-changed:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490785/+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 1490606] Re: linux: 3.19.0-28.30 -proposed tracker

2015-09-02 Thread Brad Figg
** Description changed:

  This bug is for tracking the 3.19.0-28.30 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 31. August 2015 15:07 UTC
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-phase-changed:Tuesday, 01. September 2015 01:04 UTC
+ kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC

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

Title:
  linux: 3.19.0-28.30 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 31. August 2015 15:07 UTC
  kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-phase-changed:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490606/+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 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Colin Law
By bisecting the kernel I have determined that the problem is not seen
on the last Ubuntu 3.19 kernel  3.19.8-vivid but is seen on the first
4.0 kernel that will build using fakeroot debian/rules binary-headers
binary-generic, which is

commit 636cdd7b2930ca2cdaf90eedd04fdb9fc7a8d5ec
Author: Stefan Bader 
Date:   Thu Feb 14 09:55:49 2008 -0500

UBUNTU: SAUCE: (no-up) ubuntu: dm-raid45

from  https://code.launchpad.net/~ubuntu-
kernel/ubuntu/+source/linux/+git/wily

It also exists on the latest mainline kernel 4.2.0

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in linux package in Ubuntu:
  New

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491467/+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 1440072] Re: [Hyper-V] Legacy network adapter is not detected

2015-09-02 Thread nmeier
Typo - the above patch was accepted into the ACPI tree.

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

Title:
  [Hyper-V] Legacy network adapter is not detected

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Vivid:
  In Progress

Bug description:
  Issue description:
  Attaching a Legacy network adapter to a VM will not be detected on the VM 
side.
  This is not the case with synthetic adapters, which are properly identified.

  Steps to Reproduce: 
  1. Add a Legacy Network adapter to the VM
  2. Boot the vm
  3. Verify the identified network adapter, the legacy NIC is missing

  Versions details:
  Windows Server Host Edition: Microsoft Windows Server 2012 R2 Datacenter 
build 9600 and Microsoft Windows Server 2008 R2 Standard  SP 1 build 7601
  Distribution name and release: Ubuntu Vivid Vervet
  Kernel version: Linux ubuntu31 3.19.0-11-generic #11lp14233432v201504021617 
SMP

  
  Hyper-V side:
  PS> Get-VMNetworkAdapter -VMName vivid1

  Name   IsManagementOs VMName SwitchName MacAddress   Status 
IPAddresses
     -- -- -- --   -- 
---
  Network AdapterFalse  vivid1 external   00155D06332D {Ok}   
{IP, fe80::215:5dff:fe06:332d}
  Legacy Network Adapter False  vivid1 external   00155D063336 {Ok}   {}

  On the VM Side:
  root@ubuntu31:~# ls /sys/class/net/
  eth0  lo

  eth0 has the MAC of the Network Adapter, which is the synthetic
  interface.

  This has been verified with also 1 vCPU or with irqbalancer daemon disabled, 
as that is a common requirements when using legacy adapters.
  --- 
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 May  6 08:17 seq
   crw-rw 1 root audio 116, 33 May  6 08:17 timer
  AplayDevices: Error: [Errno 2] No such file or directory
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 15.04
  HibernationDevice: RESUME=/dev/mapper/ubuntu1504--vg-swap_1
  InstallationDate: Installed on 2015-04-23 (12 days ago)
  InstallationMedia: Ubuntu-Server 15.04 "Vivid Vervet" - Release amd64 
(20150422)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  Lsusb: Error: command ['lsusb'] failed with exit code 1: unable to initialize 
libusb: -99
  MachineType: Microsoft Corporation Virtual Machine
  Package: linux (not installed)
  PciMultimedia:
   
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 hyperv_fb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-15-generic 
root=/dev/mapper/hostname--vg-root ro crashkernel=384M-:128M console=tty0 
console=ttyS1
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-15-generic N/A
   linux-backports-modules-3.19.0-15-generic  N/A
   linux-firmware 1.143
  RfKill: Error: [Errno 2] No such file or directory
  Tags:  vivid
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 3.19.0-15-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 05/23/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 090006
  dmi.board.name: Virtual Machine
  dmi.board.vendor: Microsoft Corporation
  dmi.board.version: 7.0
  dmi.chassis.asset.tag: 6473-7986-1993-5777-7899-0719-77
  dmi.chassis.type: 3
  dmi.chassis.vendor: Microsoft Corporation
  dmi.chassis.version: 7.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr090006:bd05/23/2012:svnMicrosoftCorporation:pnVirtualMachine:pvr7.0:rvnMicrosoftCorporation:rnVirtualMachine:rvr7.0:cvnMicrosoftCorporation:ct3:cvr7.0:
  dmi.product.name: Virtual Machine
  dmi.product.version: 7.0
  dmi.sys.vendor: Microsoft Corporation

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1440072/+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 1491467] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491467

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491467/+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 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Joseph Salisbury
Also, can you test the latest mainline kernel, 4.2 final?  I'd like to
confirm the bug is not fixed in mainline yet.  If it is, we can perform
a "Reverse" bisect to identify the commit that is the fix.  The mainline
kernel can be downloaded from:

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

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1491467/+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 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Joseph Salisbury
Great, thanks for testing.  I'll start the bisect and post the first
test kernel shortly.

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1491467/+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 1491510] [NEW] Touchpad not working

2015-09-02 Thread dilesh
Public bug reported:

touchpad not working after installing upgrade from 12.04 to 14.04

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

** Attachment added: "devices list"
   https://bugs.launchpad.net/bugs/1491510/+attachment/4456243/+files/devices

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

Title:
  Touchpad not working

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  touchpad not working after installing upgrade from 12.04 to 14.04

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491510/+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 1453892] Comment bridged from LTC Bugzilla

2015-09-02 Thread bugproxy
--- Comment From cha...@us.ibm.com 2015-09-02 17:22 EDT---
*** Bug 129796 has been marked as a duplicate of this bug. ***

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

Title:
  ISST-LTE: Ubuntu 15.04 need to manually set the bootlist when we do
  empty bootlist install with Crocodile adapters

Status in Linux:
  New
Status in linux package in Ubuntu:
  Fix Committed
Status in linux source package in Vivid:
  Fix Committed
Status in linux source package in Wily:
  Fix Committed

Bug description:
  ---Problem Description---
  Base on my understanding, Ubuntu 15.4 has the bootlist setup feature, and the 
system will set the bootlist by itself after fresh installation, so the user 
don't need to set the bootlist manually. However, when we do the Ubuntu 
installation with empty bootlist and Crocodile adapters, such as GTO 57B4, 
North Rim 2CD2 and Solstice 57D7, the firmware cannot find a bootable disk to 
boot up after fresh installation. The installation with empty bootlist and FC 
disk or VSCSI works fine (the lpar can automatically find the bootable disk and 
boot up, no need to set the bootlist). 

  Before installation:
  Version FW830.00 (SV830_033)
   SMS (c) Copyright IBM Corp. 2000,2014 All rights reserved.
  
---
   Current Boot Sequence
   1.None
   2.None
   3.None
   4.None
   5.None

  After installation:

  IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
  IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
  IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
  IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
  IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
  IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM
  IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM IBM

   No OS image was detected by firmware.
   At least one disk in the bootlist was not found yet.
   Firmware is now retrying the entries in the bootlist.
   Press ctrl-C to stop retrying.

   
  ---uname output---
  Linux conelp2 3.19.0-16-generic #16-Ubuntu SMP Thu Apr 30 16:12:49 UTC 2015 
ppc64le ppc64le ppc64le GNU/Linux

  Machine Type = 8408-E8E 
   
   
  ---Steps to Reproduce---
  1.Install Ubuntu 15.04
  2.Use PCIe2 4-port 1GbE Adapter
  ( loc=U78C7.001.RCH0042-P1-C8-T2 )
  and use kte (10.33.11.31) as server
  3.Enter mirror manually 
  *Server: 10.33.11.31 
  *Directory: Use default 
  *Proxy: http://10.33.11.31:3128
  4.Select disk sda/sdb
  5.After installation, let the lpar boot up by itself, and you will see the 
"No OS image was detected by firmware" message
   
  I do not know the specifics of the installers for the different distros, 
however, the
  expectation is that the installation does modify the boot list to add the 
newly installed device.  

  In the scenario where a valid boot list exists prior to the install,
  if the installer does not modify the boot list to prepend the newly
  installed device, it will not be discovered "automatically."  It would
  require going to the SMS menu to find the device and add it to the
  boot list.

  In the scenario where the boot list is empty, on reboot PFW will
  attempt to construct a default boot list by scanning all of the
  available devices.  We should be able to find the installed device.

  Excellent, thanks!  I knew it would rescan on an empty list but I
  wasn't sure about the rest.

  So I guess the expectation is the installer should set the boot
  device.  If this is not happening, can we get a reproduce starting
  from a empty boot list, and collect the install logs?  I will look at
  the logs to see if I can find where it is failing and will mirror to
  Ubuntu.

  At the very end of install you should be able to "go back" to the main
  menu, then select "Save debug logs", you will then see a message, "A
  simple web server has been started on this computer to serve log
  files".  Retrieve the files and attach to the bug:

  $ wget http:///hardware-summary
  $ wget http:///syslog

  I have reinstalled the lpar and collect logs

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1453892/+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 1490606] Re: linux: 3.19.0-28.30 -proposed tracker

2015-09-02 Thread Brad Figg
** Changed in: kernel-sru-workflow/verification-testing
   Status: New => In Progress

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

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Confirmed

** Description changed:

  This bug is for tracking the 3.19.0-28.30 upload package. This bug will
  contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 31. August 2015 15:07 UTC
- kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 01:04 UTC
- kernel-stable-phase-changed:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC
+ kernel-stable-phase:Verification & Testing
+ kernel-stable-phase-changed:Wednesday, 02. September 2015 18:01 UTC
+ kernel-stable-Verification-testing-start:Wednesday, 02. September 2015 18:01 
UTC
+ kernel-stable-Certification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
+ kernel-stable-Security-signoff-start:Wednesday, 02. September 2015 18:02 UTC
+ proposed-announcement-sent:True
+ kernel-stable-Regression-testing-start:Wednesday, 02. September 2015 18:02 UTC

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

Title:
  linux: 3.19.0-28.30 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 31. August 2015 15:07 UTC
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Wednesday, 02. September 2015 18:01 UTC
  kernel-stable-Verification-testing-start:Wednesday, 02. September 2015 18:01 
UTC
  kernel-stable-Certification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
  kernel-stable-Security-signoff-start:Wednesday, 02. September 2015 18:02 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Wednesday, 02. September 2015 18:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490606/+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 1490785] Re: linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

2015-09-02 Thread Brad Figg
** Changed in: kernel-sru-workflow/verification-testing
   Status: New => In Progress

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

** Changed in: kernel-sru-workflow/regression-testing
   Status: New => Confirmed

** Changed in: kernel-sru-workflow/security-signoff
   Status: New => Confirmed

** Description changed:

  This bug is for tracking the 3.19.0-28.30~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.
  
  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 01. September 2015 01:02 UTC
  kernel-stable-master-bug:1490606
- kernel-stable-phase:CopyToProposed
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 18:01 UTC
- kernel-stable-phase-changed:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC
+ kernel-stable-phase:Verification & Testing
+ kernel-stable-phase-changed:Wednesday, 02. September 2015 18:02 UTC
+ kernel-stable-Verification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
+ kernel-stable-Certification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
+ kernel-stable-Security-signoff-start:Wednesday, 02. September 2015 18:02 UTC
+ proposed-announcement-sent:True
+ kernel-stable-Regression-testing-start:Wednesday, 02. September 2015 18:02 UTC

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

Title:
  linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 01. September 2015 01:02 UTC
  kernel-stable-master-bug:1490606
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Wednesday, 02. September 2015 18:02 UTC
  kernel-stable-Verification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
  kernel-stable-Certification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
  kernel-stable-Security-signoff-start:Wednesday, 02. September 2015 18:02 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Wednesday, 02. September 2015 18:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490785/+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 1490564] Re: linux: 4.2.0-7.7 -proposed tracker

2015-09-02 Thread Andy Whitcroft
** Tags removed: block-proposed

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1491510] ProcCpuinfo.txt

2015-09-02 Thread dilesh
apport information

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

Title:
  Touchpad not working

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  touchpad not working after installing upgrade from 12.04 to 14.04
  --- 
  ApportVersion: 2.14.1-0ubuntu3.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  dilesh 2401 F pulseaudio
   /dev/snd/controlC0:  dilesh 2401 F pulseaudio
  CurrentDesktop: Unity
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-stella-yuanli-precise-amd64-20140320-1
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=22f8102e-a1a5-44c6-a067-1ef05dd6a664
  InstallationDate: Installed on 2014-10-23 (314 days ago)
  InstallationMedia: Ubuntu 12.04 "Precise" - Build amd64 LIVE Binary 
20140320-07:21
  MachineType: Hewlett-Packard HP 15 Notebook PC
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-62-generic 
root=UUID=f9c316c9-331e-4cc7-aac8-3f73e8f90f97 ro i915.modeset=1 quiet splash 
vt.handoff=7
  ProcVersionSignature: Ubuntu 3.13.0-62.102-generic 3.13.11-ckt24
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-62-generic N/A
   linux-backports-modules-3.13.0-62-generic  N/A
   linux-firmware 1.127.15
  Tags:  trusty
  Uname: Linux 3.13.0-62-generic x86_64
  UpgradeStatus: Upgraded to trusty on 2015-09-01 (0 days ago)
  UserGroups: adm cdrom dip fuse lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 05/21/2014
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.18
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 2211
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 86.28
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.18:bd05/21/2014:svnHewlett-Packard:pnHP15NotebookPC:pvr0991100600087:rvnHewlett-Packard:rn2211:rvr86.28:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP 15 Notebook PC
  dmi.product.version: 0991100600087
  dmi.sys.vendor: Hewlett-Packard

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

2015-09-02 Thread dilesh
apport information

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

Title:
  Touchpad not working

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  touchpad not working after installing upgrade from 12.04 to 14.04
  --- 
  ApportVersion: 2.14.1-0ubuntu3.12
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  dilesh 2401 F pulseaudio
   /dev/snd/controlC0:  dilesh 2401 F pulseaudio
  CurrentDesktop: Unity
  DistributionChannelDescriptor:
   # This is a distribution channel descriptor
   # For more information see 
http://wiki.ubuntu.com/DistributionChannelDescriptor
   canonical-oem-stella-yuanli-precise-amd64-20140320-1
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=22f8102e-a1a5-44c6-a067-1ef05dd6a664
  InstallationDate: Installed on 2014-10-23 (314 days ago)
  InstallationMedia: Ubuntu 12.04 "Precise" - Build amd64 LIVE Binary 
20140320-07:21
  MachineType: Hewlett-Packard HP 15 Notebook PC
  Package: linux (not installed)
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-62-generic 
root=UUID=f9c316c9-331e-4cc7-aac8-3f73e8f90f97 ro i915.modeset=1 quiet splash 
vt.handoff=7
  ProcVersionSignature: Ubuntu 3.13.0-62.102-generic 3.13.11-ckt24
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-62-generic N/A
   linux-backports-modules-3.13.0-62-generic  N/A
   linux-firmware 1.127.15
  Tags:  trusty
  Uname: Linux 3.13.0-62-generic x86_64
  UpgradeStatus: Upgraded to trusty on 2015-09-01 (0 days ago)
  UserGroups: adm cdrom dip fuse lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 05/21/2014
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.18
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 2211
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 86.28
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnInsyde:bvrF.18:bd05/21/2014:svnHewlett-Packard:pnHP15NotebookPC:pvr0991100600087:rvnHewlett-Packard:rn2211:rvr86.28:cvnHewlett-Packard:ct10:cvrChassisVersion:
  dmi.product.name: HP 15 Notebook PC
  dmi.product.version: 0991100600087
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491510/+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 1485081] fozzie (amd64) - tests ran: 148, failed: 1

2015-09-02 Thread Brad Figg
tests ran: 148, failed: 1;
  
http://kernel.ubuntu.com/testing/fozzie__3.2.0-90.128__2015-08-18_00-24-00/results-index.html

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

Title:
  linux: 3.2.0-90.128 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.2.0-90.128 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Friday, 14. August 2015 18:50 UTC
  kernel-stable-Prepare-package-end:Saturday, 15. August 2015 03:04 UTC
  kernel-stable-Promote-to-proposed-start:Saturday, 15. August 2015 03:04 UTC
  kernel-stable-Promote-to-proposed-end:Monday, 17. August 2015 23:00 UTC
  kernel-stable-Verification-testing-start:Tuesday, 18. August 2015 00:00 UTC
  kernel-stable-Certification-testing-start:Tuesday, 18. August 2015 00:00 UTC
  kernel-stable-Security-signoff-start:Tuesday, 18. August 2015 00:00 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Tuesday, 18. August 2015 00:00 UTC
  kernel-stable-Verification-testing-end:Monday, 24. August 2015 16:00 UTC
  kernel-stable-Regression-testing-end:Monday, 24. August 2015 16:00 UTC
  kernel-stable-Security-signoff-end:Friday, 28. August 2015 07:00 UTC
  kernel-stable-phase:CopyToUpdates
  kernel-stable-Promote-to-updates-start:Friday, 28. August 2015 09:00 UTC
  kernel-stable-phase-changed:Friday, 28. August 2015 09:00 UTC
  kernel-stable-Certification-testing-end:Friday, 28. August 2015 09:00 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1485081/+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 1383184] Re: Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

2015-09-02 Thread Kaare Baastrup
I still have problems with wifi after 10 mins use, I loose connection and have 
to reboot my machine to reconnect.
kernel

3.19.0-27-generic #29-Ubuntu SMP Fri Aug 14 21:43:37 UTC 2015 x86_64
x86_64 x86_64 GNU/Linux

04:00.0 Ethernet controller: Qualcomm Atheros Killer E220x Gigabit Ethernet 
Controller (rev 13)
05:00.0 Network controller: Qualcomm Atheros Device 003e (rev 20)

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

Title:
  Atheros Qualcomm Killer N1525 Wireless-AC [168c:003e] is not supported

Status in HWE Next:
  Triaged
Status in linux package in Ubuntu:
  Triaged
Status in linux-firmware package in Ubuntu:
  Triaged

Bug description:
  Card detail: Qualcomm Atheros Device [168c:003e] (rev 20)
  Subsystem: Bigfoot Networks, Inc. Device [1a56:1525]

  This is on a fully updated Ubuntu Server 14.04 installation, with the 
ubuntu-desktop environment installed. This happened in order to get the md raid 
drivers for raid0 on my system, as the desktop version doesn't support them.
  ---
  ApportVersion: 2.14.1-0ubuntu3.5
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  matanis2333 F pulseaudio
   /dev/snd/controlC0:  matanis2333 F pulseaudio
  CRDA: Error: [Errno 2] No such file or directory
  CurrentDesktop: Unity
  DistroRelease: Ubuntu 14.04
  HibernationDevice: RESUME=UUID=1b192ee3-f592-43e9-bdcf-08b91c0aa9b6
  InstallationDate: Installed on 2014-10-16 (3 days ago)
  InstallationMedia: Ubuntu-Server 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.3)
  IwConfig:
   p2p1  no wireless extensions.

   lono wireless extensions.
  MachineType: Micro-Star International Co., Ltd. GT72 2QE
  NonfreeKernelModules: nvidia
  Package: linux (not installed)
  ProcFB: 0 EFI VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-37-generic.efi.signed 
root=UUID=80998dbb-1f89-4eda-be90-25e35e1c0a90 ro
  ProcVersionSignature: Ubuntu 3.13.0-37.64-generic 3.13.11.7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-37-generic N/A
   linux-backports-modules-3.13.0-37-generic  N/A
   linux-firmware 1.127.7
  RfKill:

  Tags:  trusty
  Uname: Linux 3.13.0-37-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups: adm cdrom dip lpadmin plugdev sambashare sudo
  _MarkForUpload: True
  dmi.bios.date: 09/15/2014
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: E1781IMS.10D
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: MS-1781
  dmi.board.vendor: Micro-Star International Co., Ltd.
  dmi.board.version: REV:0.C
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrE1781IMS.10D:bd09/15/2014:svnMicro-StarInternationalCo.,Ltd.:pnGT722QE:pvrREV0.C:rvnMicro-StarInternationalCo.,Ltd.:rnMS-1781:rvrREV0.C:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: GT72 2QE
  dmi.product.version: REV:0.C
  dmi.sys.vendor: Micro-Star International Co., Ltd.

  Qualcomm Atheros Device [168c:003e] (rev 20)

  mainline commit d63955b33b3bee45d784ffdfafeb93076c765660

  [6.221281] ath10k_pci :02:00.0: pci irq msi interrupts 1 irq_mode 0 
reset_mode 0
  [6.417386] ath10k_pci :02:00.0: Direct firmware load for 
ath10k/cal-pci-:02:00.0.bin failed with error -2
  [6.417404] ath10k_pci :02:00.0: Direct firmware load for 
ath10k/QCA6174/hw2.1/board-pci-168c:003e:17aa:3044.bin failed with error -2
  [6.417407] ath10k_pci :02:00.0: failed to load spec board file, 
falling back to generic: -2
  [6.417416] ath10k_pci :02:00.0: Direct firmware load for 
ath10k/QCA6174/hw2.1/board.bin failed with error -2
  [6.417418] ath10k_pci :02:00.0: failed to fetch generic board data: -2
  [6.417420] ath10k_pci :02:00.0: failed to fetch board file: -2
  [6.417421] ath10k_pci :02:00.0: could not fetch firmware files (-2)
  [6.417423] ath10k_pci :02:00.0: could not probe fw (-2)

  failed to find it in https://github.com/kvalo/ath10k-firmware or
  https://github.com/sumdog/ath10k-firmware

To manage notifications about this bug go to:
https://bugs.launchpad.net/hwe-next/+bug/1383184/+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 1440072] Re: [Hyper-V] Legacy network adapter is not detected

2015-09-02 Thread Joseph Salisbury
The fix for this bug is upstream as the following commit:

commit 5d0ddfebb93069061880fc57ee4ba7246bd1e1ee
Author: Jiang Liu 
Date:   Fri Aug 21 15:36:23 2015 +0800

ACPI, PCI: Penalize legacy IRQ used by ACPI SCI


This commit was also cc'd to stable, so it should make it's way through the 
stable releases.

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

Title:
  [Hyper-V] Legacy network adapter is not detected

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Vivid:
  In Progress

Bug description:
  Issue description:
  Attaching a Legacy network adapter to a VM will not be detected on the VM 
side.
  This is not the case with synthetic adapters, which are properly identified.

  Steps to Reproduce: 
  1. Add a Legacy Network adapter to the VM
  2. Boot the vm
  3. Verify the identified network adapter, the legacy NIC is missing

  Versions details:
  Windows Server Host Edition: Microsoft Windows Server 2012 R2 Datacenter 
build 9600 and Microsoft Windows Server 2008 R2 Standard  SP 1 build 7601
  Distribution name and release: Ubuntu Vivid Vervet
  Kernel version: Linux ubuntu31 3.19.0-11-generic #11lp14233432v201504021617 
SMP

  
  Hyper-V side:
  PS> Get-VMNetworkAdapter -VMName vivid1

  Name   IsManagementOs VMName SwitchName MacAddress   Status 
IPAddresses
     -- -- -- --   -- 
---
  Network AdapterFalse  vivid1 external   00155D06332D {Ok}   
{IP, fe80::215:5dff:fe06:332d}
  Legacy Network Adapter False  vivid1 external   00155D063336 {Ok}   {}

  On the VM Side:
  root@ubuntu31:~# ls /sys/class/net/
  eth0  lo

  eth0 has the MAC of the Network Adapter, which is the synthetic
  interface.

  This has been verified with also 1 vCPU or with irqbalancer daemon disabled, 
as that is a common requirements when using legacy adapters.
  --- 
  AlsaDevices:
   total 0
   crw-rw 1 root audio 116,  1 May  6 08:17 seq
   crw-rw 1 root audio 116, 33 May  6 08:17 timer
  AplayDevices: Error: [Errno 2] No such file or directory
  ApportVersion: 2.17.2-0ubuntu1
  Architecture: amd64
  ArecordDevices: Error: [Errno 2] No such file or directory
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/seq', 
'/dev/snd/timer'] failed with exit code 1:
  DistroRelease: Ubuntu 15.04
  HibernationDevice: RESUME=/dev/mapper/ubuntu1504--vg-swap_1
  InstallationDate: Installed on 2015-04-23 (12 days ago)
  InstallationMedia: Ubuntu-Server 15.04 "Vivid Vervet" - Release amd64 
(20150422)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  Lsusb: Error: command ['lsusb'] failed with exit code 1: unable to initialize 
libusb: -99
  MachineType: Microsoft Corporation Virtual Machine
  Package: linux (not installed)
  PciMultimedia:
   
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 hyperv_fb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-15-generic 
root=/dev/mapper/hostname--vg-root ro crashkernel=384M-:128M console=tty0 
console=ttyS1
  ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-15-generic N/A
   linux-backports-modules-3.19.0-15-generic  N/A
   linux-firmware 1.143
  RfKill: Error: [Errno 2] No such file or directory
  Tags:  vivid
  UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
  Uname: Linux 3.19.0-15-generic x86_64
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  _MarkForUpload: True
  dmi.bios.date: 05/23/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 090006
  dmi.board.name: Virtual Machine
  dmi.board.vendor: Microsoft Corporation
  dmi.board.version: 7.0
  dmi.chassis.asset.tag: 6473-7986-1993-5777-7899-0719-77
  dmi.chassis.type: 3
  dmi.chassis.vendor: Microsoft Corporation
  dmi.chassis.version: 7.0
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr090006:bd05/23/2012:svnMicrosoftCorporation:pnVirtualMachine:pvr7.0:rvnMicrosoftCorporation:rnVirtualMachine:rvr7.0:cvnMicrosoftCorporation:ct3:cvr7.0:
  dmi.product.name: Virtual Machine
  dmi.product.version: 7.0
  dmi.sys.vendor: Microsoft Corporation

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1440072/+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 1491649] [NEW] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[0.013502] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[0.013504] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:20:52 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  ENERGY_PERF_BIAS: Set to 'normal', was 'performance'

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.013502] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
  [0.013504] ENERGY_PERF_BIAS: View and update with 
x86_energy_perf_policy(8)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:20:52 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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

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

[Kernel-packages] [Bug 1491652] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491652

Title:
  ACPI: Executed 1 blocks of module-level executable AML code

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.123773] ACPI: Executed 1 blocks of module-level executable AML code

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:24:19 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491652/+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 1491657] [NEW] usb 1-1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[1.468281] usb 1-1: ep 0x81 - rounding interval to 64 microframes, ep desc 
says 80 microframes

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:33:18 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  usb 1-1: ep 0x81 - rounding interval to 64 microframes, ep desc says
  80 microframes

Status in linux package in Ubuntu:
  New

Bug description:
  dmesg:
  [1.468281] usb 1-1: ep 0x81 - rounding interval to 64 microframes, ep 
desc says 80 microframes

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:33:18 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491657/+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 1491651] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491651

Title:
  mtrr: your CPUs had inconsistent variable MTRR settings

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.116009] mtrr: your CPUs had inconsistent variable MTRR settings

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:22:45 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491651/+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 1462164] Re: CVE-2014-9728

2015-09-02 Thread John Johansen
** Description changed:

- A UDF filesystem image with malicious lengths specified in multiple
- datastructures could cause crashes or other undesired behaviours.
+ The UDF filesystem implementation in the Linux kernel before 3.18.2 does
+ not validate certain lengths, which allows local users to cause a denial
+ of service (buffer over-read and system crash) via a crafted filesystem
+ image, related to fs/udf/inode.c and fs/udf/symlink.c.
  
  Break-Fix: - e159332b9af4b04d882dbcfe1bb0117f0a6d4b58
  Break-Fix: - e237ec37ec154564f8690c5bd1795339955eeef9
  Break-Fix: - a1d47b262952a45aae62bd49cfaf33dd76c11a2c

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

Title:
  CVE-2014-9728

Status in linux package in Ubuntu:
  Invalid
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-ec2 package in Ubuntu:
  Invalid
Status in linux-flo package in Ubuntu:
  New
Status in linux-fsl-imx51 package in Ubuntu:
  Invalid
Status in linux-goldfish package in Ubuntu:
  New
Status in linux-lts-backport-maverick package in Ubuntu:
  New
Status in linux-lts-backport-natty package in Ubuntu:
  New
Status in linux-lts-quantal package in Ubuntu:
  Invalid
Status in linux-lts-raring package in Ubuntu:
  Invalid
Status in linux-lts-saucy package in Ubuntu:
  Invalid
Status in linux-lts-trusty package in Ubuntu:
  Invalid
Status in linux-lts-utopic package in Ubuntu:
  Invalid
Status in linux-lts-vivid package in Ubuntu:
  Invalid
Status in linux-mako package in Ubuntu:
  New
Status in linux-manta package in Ubuntu:
  New
Status in linux-mvl-dove package in Ubuntu:
  Invalid
Status in linux-ti-omap4 package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  Fix Released
Status in linux-armadaxp source package in Precise:
  Fix Released
Status in linux-ec2 source package in Precise:
  Invalid
Status in linux-flo source package in Precise:
  Invalid
Status in linux-fsl-imx51 source package in Precise:
  Invalid
Status in linux-goldfish source package in Precise:
  Invalid
Status in linux-lts-backport-maverick source package in Precise:
  New
Status in linux-lts-backport-natty source package in Precise:
  New
Status in linux-lts-quantal source package in Precise:
  New
Status in linux-lts-raring source package in Precise:
  Invalid
Status in linux-lts-saucy source package in Precise:
  New
Status in linux-lts-trusty source package in Precise:
  Fix Released
Status in linux-lts-utopic source package in Precise:
  Invalid
Status in linux-lts-vivid source package in Precise:
  Invalid
Status in linux-mako source package in Precise:
  Invalid
Status in linux-manta source package in Precise:
  Invalid
Status in linux-mvl-dove source package in Precise:
  Invalid
Status in linux-ti-omap4 source package in Precise:
  Fix Released
Status in linux source package in Trusty:
  Fix Released
Status in linux-armadaxp source package in Trusty:
  Invalid
Status in linux-ec2 source package in Trusty:
  Invalid
Status in linux-flo source package in Trusty:
  Invalid
Status in linux-fsl-imx51 source package in Trusty:
  Invalid
Status in linux-goldfish source package in Trusty:
  Invalid
Status in linux-lts-backport-maverick source package in Trusty:
  New
Status in linux-lts-backport-natty source package in Trusty:
  New
Status in linux-lts-quantal source package in Trusty:
  Invalid
Status in linux-lts-raring source package in Trusty:
  Invalid
Status in linux-lts-saucy source package in Trusty:
  Invalid
Status in linux-lts-trusty source package in Trusty:
  Invalid
Status in linux-lts-utopic source package in Trusty:
  Fix Released
Status in linux-lts-vivid source package in Trusty:
  Invalid
Status in linux-mako source package in Trusty:
  Invalid
Status in linux-manta source package in Trusty:
  Invalid
Status in linux-mvl-dove source package in Trusty:
  Invalid
Status in linux-ti-omap4 source package in Trusty:
  Invalid
Status in linux-lts-backport-maverick source package in Utopic:
  New
Status in linux-lts-backport-natty source package in Utopic:
  New
Status in linux source package in Vivid:
  Invalid
Status in linux-armadaxp source package in Vivid:
  Invalid
Status in linux-ec2 source package in Vivid:
  Invalid
Status in linux-flo source package in Vivid:
  New
Status in linux-fsl-imx51 source package in Vivid:
  Invalid
Status in linux-goldfish source package in Vivid:
  New
Status in linux-lts-backport-maverick source package in Vivid:
  New
Status in linux-lts-backport-natty source package in Vivid:
  New
Status in linux-lts-quantal source package in Vivid:
  Invalid
Status in linux-lts-raring source package in Vivid:
  Invalid
Status in linux-lts-saucy source package in Vivid:
  Invalid
Status in linux-lts-trusty source package in Vivid:
  Invalid
Status in linux-lts-utopic source package in Vivid:
  Invalid
Status in linux-lts-vivid source package in Vivid:
  Invalid
Status in 

[Kernel-packages] [Bug 1491656] [NEW] ACPI: Enabled 4 GPEs in block 00 to 3F

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[0.161885] ACPI: Enabled 4 GPEs in block 00 to 3F

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:30:23 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  ACPI: Enabled 4 GPEs in block 00 to 3F

Status in linux package in Ubuntu:
  New

Bug description:
  dmesg:
  [0.161885] ACPI: Enabled 4 GPEs in block 00 to 3F

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:30:23 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491656/+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 1491649] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491649

Title:
  ENERGY_PERF_BIAS: Set to 'normal', was 'performance'

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.013502] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
  [0.013504] ENERGY_PERF_BIAS: View and update with 
x86_energy_perf_policy(8)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:20:52 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491649/+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 1491654] [NEW] Intel P3700 PCIe SSD string shows ''Unknown'' during Ubuntu 14.04 installation

2015-09-02 Thread Samantha Jian-Pielak
Public bug reported:

Current Behavior
==
1. Intel P3700 PCIe SSD string shows "Unknow" during Ubuntu 14.04 install.

Reference Verification
==
1. Which version of previous BIOS/BMC/HW passed/failed? 1st Test
2. Which similar project/product passed/failed? NA

Steps to reproduce the problem
==
1. Install Intel P3700 PCIe SSD*2 and SAS 12G HDD*8 with LSI 3108 into SUT.
2. Power on system and install Ubuntu 14.04.
3. Intel P3700 PCIe SSD string shows "Unknown" during OS install.

Expected Behavior
==
1. Intel P3700 PCIe SSD string should not show "Unknown" during Ubuntu 14.04 
install.

Pcie SSD config:HDD/SSD:Intel,SSDPE2MD016T4,PCI-e,1.6TB,Gen3


Copied from private bug 1454945.

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


** Tags: trusty

** Attachment added: "partition.png"
   
https://bugs.launchpad.net/bugs/1491654/+attachment/4456549/+files/partition.png

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

Title:
  Intel P3700 PCIe SSD string shows ''Unknown'' during Ubuntu 14.04
  installation

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Current Behavior
  ==
  1. Intel P3700 PCIe SSD string shows "Unknow" during Ubuntu 14.04 install.

  Reference Verification
  ==
  1. Which version of previous BIOS/BMC/HW passed/failed? 1st Test
  2. Which similar project/product passed/failed? NA

  Steps to reproduce the problem
  ==
  1. Install Intel P3700 PCIe SSD*2 and SAS 12G HDD*8 with LSI 3108 into SUT.
  2. Power on system and install Ubuntu 14.04.
  3. Intel P3700 PCIe SSD string shows "Unknown" during OS install.

  Expected Behavior
  ==
  1. Intel P3700 PCIe SSD string should not show "Unknown" during Ubuntu 14.04 
install.

  Pcie SSD config:HDD/SSD:Intel,SSDPE2MD016T4,PCI-e,1.6TB,Gen3

  
  Copied from private bug 1454945.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491654/+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 1491653] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491653

Title:
  ACPI: Dynamic OEM Table Load:

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  0.128167] ACPI: Dynamic OEM Table Load:
  [0.128181] ACPI: SSDT 0x880119CA5000 000784 (v01 PmRef  Cpu0Cst  
3001 INTL 20061109)
  [0.128951] ACPI: Dynamic OEM Table Load:
  [0.128961] ACPI: SSDT 0x880119F3D000 000303 (v01 PmRef  ApIst
3000 INTL 20061109)
  [0.129627] ACPI: Dynamic OEM Table Load:
  [0.129635] ACPI: SSDT 0x880119F65C00 000119 (v01 PmRef  ApCst
3000 INTL 20061109)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:26:47 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491653/+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 1491654] Missing required logs.

2015-09-02 Thread Brad Figg
This bug is missing log files that will aid in diagnosing the problem.
>From a terminal window please run:

apport-collect 1491654

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

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

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

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

** Tags added: trusty

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

Title:
  Intel P3700 PCIe SSD string shows ''Unknown'' during Ubuntu 14.04
  installation

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Current Behavior
  ==
  1. Intel P3700 PCIe SSD string shows "Unknow" during Ubuntu 14.04 install.

  Reference Verification
  ==
  1. Which version of previous BIOS/BMC/HW passed/failed? 1st Test
  2. Which similar project/product passed/failed? NA

  Steps to reproduce the problem
  ==
  1. Install Intel P3700 PCIe SSD*2 and SAS 12G HDD*8 with LSI 3108 into SUT.
  2. Power on system and install Ubuntu 14.04.
  3. Intel P3700 PCIe SSD string shows "Unknown" during OS install.

  Expected Behavior
  ==
  1. Intel P3700 PCIe SSD string should not show "Unknown" during Ubuntu 14.04 
install.

  Pcie SSD config:HDD/SSD:Intel,SSDPE2MD016T4,PCI-e,1.6TB,Gen3

  
  Copied from private bug 1454945.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491654/+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 1491654] Re: Intel P3700 PCIe SSD string shows ''Unknown'' during Ubuntu 14.04 installation

2015-09-02 Thread Samantha Jian-Pielak
modalias: pci:v8086d0953sv8086sd3703bc01sc08i02

udev properties:

P: /devices/pci:00/:00:03.0/:01:00.0/block/nvme0n1
N: nvme0n1
S: disk/by-uuid/4d7a5a96-e306-4a40-8fb7-d49c5ad2ee25
E: DEVLINKS=/dev/disk/by-uuid/4d7a5a96-e306-4a40-8fb7-d49c5ad2ee25
E: DEVNAME=/dev/nvme0n1
E: DEVPATH=/devices/pci:00/:00:03.0/:01:00.0/block/nvme0n1
E: DEVTYPE=disk
E: ID_FS_TYPE=ext2
E: ID_FS_USAGE=filesystem
E: ID_FS_UUID=4d7a5a96-e306-4a40-8fb7-d49c5ad2ee25
E: ID_FS_UUID_ENC=4d7a5a96-e306-4a40-8fb7-d49c5ad2ee25
E: ID_FS_VERSION=1.0
E: MAJOR=259
E: MINOR=0
E: SUBSYSTEM=block
E: USEC_INITIALIZED=650392

sysfs attributes:

  looking at device 
'/devices/pci:00/:00:03.0/:01:00.0/block/nvme0n1':
KERNEL=="nvme0n1"
SUBSYSTEM=="block"
DRIVER==""
ATTR{ro}=="0"
ATTR{size}=="3125627568"
ATTR{stat}==" 1338 0 10620 244 0 0 0 0 0 56 244"
ATTR{range}=="0"
ATTR{discard_alignment}=="512"
ATTR{ext_range}=="256"
ATTR{alignment_offset}=="0"
ATTR{inflight}==" 0 0"
ATTR{removable}=="0"
ATTR{capability}=="50"

  looking at parent device '/devices/pci:00/:00:03.0/:01:00.0':
KERNELS==":01:00.0"
SUBSYSTEMS=="pci"
DRIVERS=="nvme"
ATTRS{irq}=="40"
ATTRS{subsystem_vendor}=="0x8086"
ATTRS{broken_parity_status}=="0"
ATTRS{class}=="0x010802"
ATTRS{enabled}=="1"
ATTRS{consistent_dma_mask_bits}=="64"
ATTRS{dma_mask_bits}=="64"

ATTRS{local_cpus}==",,,,,,0fff,0fff"
ATTRS{device}=="0x0953"
ATTRS{msi_bus}==""
ATTRS{local_cpulist}=="0-11,48-59"
ATTRS{vendor}=="0x8086"
ATTRS{subsystem_device}=="0x3703"
ATTRS{numa_node}=="0"
ATTRS{d3cold_allowed}=="1"

There is no model file in /sys/block/nvme0n1/device/

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

Title:
  Intel P3700 PCIe SSD string shows ''Unknown'' during Ubuntu 14.04
  installation

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  Current Behavior
  ==
  1. Intel P3700 PCIe SSD string shows "Unknow" during Ubuntu 14.04 install.

  Reference Verification
  ==
  1. Which version of previous BIOS/BMC/HW passed/failed? 1st Test
  2. Which similar project/product passed/failed? NA

  Steps to reproduce the problem
  ==
  1. Install Intel P3700 PCIe SSD*2 and SAS 12G HDD*8 with LSI 3108 into SUT.
  2. Power on system and install Ubuntu 14.04.
  3. Intel P3700 PCIe SSD string shows "Unknown" during OS install.

  Expected Behavior
  ==
  1. Intel P3700 PCIe SSD string should not show "Unknown" during Ubuntu 14.04 
install.

  Pcie SSD config:HDD/SSD:Intel,SSDPE2MD016T4,PCI-e,1.6TB,Gen3

  
  Copied from private bug 1454945.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491654/+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 1491655] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491655

Title:
  ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_]
  (20150619/hwxface-580)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.131913] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State 
[\_S2_] (20150619/hwxface-580)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:28:18 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491655/+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 1491657] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491657

Title:
  usb 1-1: ep 0x81 - rounding interval to 64 microframes, ep desc says
  80 microframes

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [1.468281] usb 1-1: ep 0x81 - rounding interval to 64 microframes, ep 
desc says 80 microframes

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:33:18 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491657/+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 1491658] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491658

Title:
  systemd[1]: Failed to insert module 'kdbus': Function not implemented

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [3.770177] systemd[1]: Failed to insert module 'kdbus': Function not 
implemented

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:35:22 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491658/+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 1490564] fozzie (i386) - tests ran: 167, failed: 0

2015-09-02 Thread Brad Figg
tests ran: 167, failed: 0;
  
http://kernel.ubuntu.com/testing/fozzie__4.1.0-3.3__2015-09-02_21-41-00/results-index.html

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1490564] onibi (i386) - tests ran: 167, failed: 0

2015-09-02 Thread Brad Figg
tests ran: 167, failed: 0;
  
http://kernel.ubuntu.com/testing/onibi__4.1.0-3.3__2015-09-02_21-45-00/results-index.html

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1491647] [NEW] ACPI: RSDP 0x00000000000F0120 000024 (v02 SECCSD)

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[0.00] ACPI: RSDP 0x000F0120 24 (v02 SECCSD)
[0.00] ACPI: XSDT 0xDAFFE170 94 (v01 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: FACP 0xDAFEE000 00010C (v05 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: DSDT 0xDAFF1000 0092DA (v02 SECCSD IVB-CPT  
 INTL 20061109)
[0.00] ACPI: FACS 0xDAF7B000 40
[0.00] ACPI: SLIC 0xDAFFD000 000176 (v01 SECCSD LH43STAR 
0002 PTL  0001)
[0.00] ACPI: SSDT 0xDAFFB000 001068 (v01 SECCSD PtidDevc 
1000 INTL 20061109)
[0.00] ACPI: ASF! 0xDAFF A5 (v32 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: HPET 0xDAFED000 38 (v01 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: APIC 0xDAFEC000 98 (v03 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: MCFG 0xDAFEB000 3C (v01 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: FPDT 0xDAFEA000 54 (v01 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: SSDT 0xDAFE9000 0007D7 (v01 PmRef  Cpu0Ist  
3000 INTL 20061109)
[0.00] ACPI: SSDT 0xDAFE8000 000AD0 (v01 PmRef  CpuPm
3000 INTL 20061109)
[0.00] ACPI: UEFI 0xDAFE7000 3E (v01 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: UEFI 0xDAFE6000 42 (v01 PTLCOMBUF   
0001 PTL  0001)
[0.00] ACPI: POAT 0xDAF78000 55 (v03 SECCSD LH43STAR 
0002 PTL  0002)
[0.00] ACPI: UEFI 0xDAFE5000 00022E (v01 SECCSD LH43STAR 
0002 PTL  0002)

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:14:54 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  ACPI: RSDP 0x000F0120 24 (v02 SECCSD)

Status in linux package in Ubuntu:
  New

Bug description:
  dmesg:
  [0.00] ACPI: RSDP 0x000F0120 24 (v02 SECCSD)
  [0.00] ACPI: XSDT 0xDAFFE170 94 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: FACP 0xDAFEE000 00010C (v05 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: DSDT 0xDAFF1000 0092DA (v02 SECCSD IVB-CPT  
 INTL 20061109)
  [0.00] ACPI: FACS 0xDAF7B000 40
  [0.00] ACPI: SLIC 0xDAFFD000 000176 (v01 SECCSD LH43STAR 
0002 PTL  0001)
  [0.00] ACPI: SSDT 0xDAFFB000 001068 (v01 SECCSD PtidDevc 
1000 INTL 20061109)
  [0.00] ACPI: ASF! 0xDAFF A5 (v32 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: HPET 0xDAFED000 38 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: APIC 0xDAFEC000 98 (v03 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: MCFG 

[Kernel-packages] [Bug 1491467] Re: kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

2015-09-02 Thread Joseph Salisbury
I built the next test kernel, up to the following commit:
c5ce28df0e7c01a1de23c36ebdefcd803f2b6cbb

The test kernel can be downloaded from:
http://kernel.ubuntu.com/~jsalisbury/lp1491467

Can you test that kernel and report back if it has the bug or not? I
will build the next test kernel based on your test results.

Thanks in advance

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

Title:
  kworker consuming cpu due to GPE13 interrupt storm on Fujitsu A544

Status in Linux:
  Unknown
Status in linux package in Ubuntu:
  In Progress
Status in linux source package in Wily:
  In Progress

Bug description:
  On Fujitsu A544 laptop (and likely others) fitted with SSD, kworker
  takes 100% of one core of CPU due to GPE13 interrupt storm

  See upstream bug https://bugzilla.kernel.org/show_bug.cgi?id=53071

  The bug can be identified by repeatedly running 
  cat /sys/firmware/acpi/interrupts/gpe13
  where a rapidly increasing count will be seen.

  Workaround:
  sudo sh -c 'echo "disable" > /sys/firmware/acpi/interrupts/gpe13'
  disables it until reboot
  Using 
  sudo crontab -e
  and adding the line
  @reboot echo "disable" > /sys/firmware/acpi/interrupts/gpe13
  works around for subsequent boots.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.1.0-3-generic 4.1.0-3.3
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  colinl 1699 F pulseaudio
   /dev/snd/controlC1:  colinl 1699 F pulseaudio
  CurrentDesktop: Unity
  Date: Wed Sep  2 16:03:19 2015
  InstallationDate: Installed on 2014-10-21 (316 days ago)
  InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha amd64 (20141017)
  MachineType: FUJITSU LIFEBOOK A544
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.1.0-3-generic 
root=UUID=c68c6484-d8d6-44f6-b429-892aa6ef74cf ro
  RelatedPackageVersions:
   linux-restricted-modules-4.1.0-3-generic N/A
   linux-backports-modules-4.1.0-3-generic  N/A
   linux-firmware   1.147
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: Upgraded to wily on 2015-08-31 (1 days ago)
  dmi.bios.date: 04/01/2015
  dmi.bios.vendor: FUJITSU // Phoenix Technologies Ltd.
  dmi.bios.version: Version 1.19
  dmi.board.name: FJNBB35
  dmi.board.vendor: FUJITSU
  dmi.chassis.type: 10
  dmi.chassis.vendor: FUJITSU
  dmi.modalias: 
dmi:bvnFUJITSU//PhoenixTechnologiesLtd.:bvrVersion1.19:bd04/01/2015:svnFUJITSU:pnLIFEBOOKA544:pvr:rvnFUJITSU:rnFJNBB35:rvr:cvnFUJITSU:ct10:cvr:
  dmi.product.name: LIFEBOOK A544
  dmi.sys.vendor: FUJITSU

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1491467/+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 1491652] [NEW] ACPI: Executed 1 blocks of module-level executable AML code

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[0.123773] ACPI: Executed 1 blocks of module-level executable AML code

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:24:19 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  ACPI: Executed 1 blocks of module-level executable AML code

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.123773] ACPI: Executed 1 blocks of module-level executable AML code

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:24:19 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491652/+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 1491648] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491648

Title:
  ACPI: All ACPI Tables successfully acquired

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.010758] ACPI: All ACPI Tables successfully acquired

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:17:47 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491648/+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 1491647] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491647

Title:
  ACPI: RSDP 0x000F0120 24 (v02 SECCSD)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.00] ACPI: RSDP 0x000F0120 24 (v02 SECCSD)
  [0.00] ACPI: XSDT 0xDAFFE170 94 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: FACP 0xDAFEE000 00010C (v05 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: DSDT 0xDAFF1000 0092DA (v02 SECCSD IVB-CPT  
 INTL 20061109)
  [0.00] ACPI: FACS 0xDAF7B000 40
  [0.00] ACPI: SLIC 0xDAFFD000 000176 (v01 SECCSD LH43STAR 
0002 PTL  0001)
  [0.00] ACPI: SSDT 0xDAFFB000 001068 (v01 SECCSD PtidDevc 
1000 INTL 20061109)
  [0.00] ACPI: ASF! 0xDAFF A5 (v32 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: HPET 0xDAFED000 38 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: APIC 0xDAFEC000 98 (v03 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: MCFG 0xDAFEB000 3C (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: FPDT 0xDAFEA000 54 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: SSDT 0xDAFE9000 0007D7 (v01 PmRef  Cpu0Ist  
3000 INTL 20061109)
  [0.00] ACPI: SSDT 0xDAFE8000 000AD0 (v01 PmRef  CpuPm
3000 INTL 20061109)
  [0.00] ACPI: UEFI 0xDAFE7000 3E (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: UEFI 0xDAFE6000 42 (v01 PTLCOMBUF   
0001 PTL  0001)
  [0.00] ACPI: POAT 0xDAF78000 55 (v03 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: UEFI 0xDAFE5000 00022E (v01 SECCSD LH43STAR 
0002 PTL  0002)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:14:54 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491647/+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 1491655] [NEW] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150619/hwxface-580)

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[0.131913] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State 
[\_S2_] (20150619/hwxface-580)

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:28:18 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_]
  (20150619/hwxface-580)

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.131913] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State 
[\_S2_] (20150619/hwxface-580)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:28:18 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491655/+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 1491653] [NEW] ACPI: Dynamic OEM Table Load:

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
0.128167] ACPI: Dynamic OEM Table Load:
[0.128181] ACPI: SSDT 0x880119CA5000 000784 (v01 PmRef  Cpu0Cst  
3001 INTL 20061109)
[0.128951] ACPI: Dynamic OEM Table Load:
[0.128961] ACPI: SSDT 0x880119F3D000 000303 (v01 PmRef  ApIst
3000 INTL 20061109)
[0.129627] ACPI: Dynamic OEM Table Load:
[0.129635] ACPI: SSDT 0x880119F65C00 000119 (v01 PmRef  ApCst
3000 INTL 20061109)

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:26:47 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  ACPI: Dynamic OEM Table Load:

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  0.128167] ACPI: Dynamic OEM Table Load:
  [0.128181] ACPI: SSDT 0x880119CA5000 000784 (v01 PmRef  Cpu0Cst  
3001 INTL 20061109)
  [0.128951] ACPI: Dynamic OEM Table Load:
  [0.128961] ACPI: SSDT 0x880119F3D000 000303 (v01 PmRef  ApIst
3000 INTL 20061109)
  [0.129627] ACPI: Dynamic OEM Table Load:
  [0.129635] ACPI: SSDT 0x880119F65C00 000119 (v01 PmRef  ApCst
3000 INTL 20061109)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:26:47 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 

[Kernel-packages] [Bug 1490564] tarf (amd64) - tests ran: 197, failed: 1

2015-09-02 Thread Brad Figg
tests ran: 197, failed: 1;
  
http://kernel.ubuntu.com/testing/tarf__4.1.0-3.3__2015-09-02_18-27-00/results-index.html

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1491648] [NEW] ACPI: All ACPI Tables successfully acquired

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[0.010758] ACPI: All ACPI Tables successfully acquired

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:17:47 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  ACPI: All ACPI Tables successfully acquired

Status in linux package in Ubuntu:
  New

Bug description:
  dmesg:
  [0.010758] ACPI: All ACPI Tables successfully acquired

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:17:47 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491648/+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 1491647] Re: ACPI: RSDP 0x00000000000F0120 000024 (v02 SECCSD)

2015-09-02 Thread Alberto Salvia Novella
@ Cristian Aravena Romero

Could you explain to me when does this happen? 

(After doing so, please set this bug status back to "confirmed". Thank
you.)

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

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

Title:
  ACPI: RSDP 0x000F0120 24 (v02 SECCSD)

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  dmesg:
  [0.00] ACPI: RSDP 0x000F0120 24 (v02 SECCSD)
  [0.00] ACPI: XSDT 0xDAFFE170 94 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: FACP 0xDAFEE000 00010C (v05 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: DSDT 0xDAFF1000 0092DA (v02 SECCSD IVB-CPT  
 INTL 20061109)
  [0.00] ACPI: FACS 0xDAF7B000 40
  [0.00] ACPI: SLIC 0xDAFFD000 000176 (v01 SECCSD LH43STAR 
0002 PTL  0001)
  [0.00] ACPI: SSDT 0xDAFFB000 001068 (v01 SECCSD PtidDevc 
1000 INTL 20061109)
  [0.00] ACPI: ASF! 0xDAFF A5 (v32 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: HPET 0xDAFED000 38 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: APIC 0xDAFEC000 98 (v03 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: MCFG 0xDAFEB000 3C (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: FPDT 0xDAFEA000 54 (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: SSDT 0xDAFE9000 0007D7 (v01 PmRef  Cpu0Ist  
3000 INTL 20061109)
  [0.00] ACPI: SSDT 0xDAFE8000 000AD0 (v01 PmRef  CpuPm
3000 INTL 20061109)
  [0.00] ACPI: UEFI 0xDAFE7000 3E (v01 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: UEFI 0xDAFE6000 42 (v01 PTLCOMBUF   
0001 PTL  0001)
  [0.00] ACPI: POAT 0xDAF78000 55 (v03 SECCSD LH43STAR 
0002 PTL  0002)
  [0.00] ACPI: UEFI 0xDAFE5000 00022E (v01 SECCSD LH43STAR 
0002 PTL  0002)

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:14:54 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491647/+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 1490785] ms10-35-mcdivittB0 (arm64) - tests ran: 153, failed: 5

2015-09-02 Thread Brad Figg
tests ran: 153, failed: 5;
  
http://kernel.ubuntu.com/testing/ms10-35-mcdivittB0__3.19.0-26.28~14.04.1__2015-09-02_22-37-00/results-index.html

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

Title:
  linux-lts-vivid: 3.19.0-28.30~14.04.1 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30~14.04.1 upload package. This
  bug will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Tuesday, 01. September 2015 01:02 UTC
  kernel-stable-master-bug:1490606
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 18:01 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Wednesday, 02. September 2015 18:02 UTC
  kernel-stable-Verification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
  kernel-stable-Certification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
  kernel-stable-Security-signoff-start:Wednesday, 02. September 2015 18:02 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Wednesday, 02. September 2015 18:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490785/+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 1491651] [NEW] mtrr: your CPUs had inconsistent variable MTRR settings

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[0.116009] mtrr: your CPUs had inconsistent variable MTRR settings

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:22:45 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  mtrr: your CPUs had inconsistent variable MTRR settings

Status in linux package in Ubuntu:
  New

Bug description:
  dmesg:
  [0.116009] mtrr: your CPUs had inconsistent variable MTRR settings

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:22:45 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491651/+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 1491658] [NEW] systemd[1]: Failed to insert module 'kdbus': Function not implemented

2015-09-02 Thread Cristian Aravena Romero
Public bug reported:

dmesg:
[3.770177] systemd[1]: Failed to insert module 'kdbus': Function not 
implemented

ProblemType: Bug
DistroRelease: Ubuntu 15.10
Package: linux-image-4.2.0-7-generic 4.2.0-7.7
ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
Uname: Linux 4.2.0-7-generic x86_64
ApportVersion: 2.18-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
 /dev/snd/controlC0:  caravena   1187 F pulseaudio
CurrentDesktop: GNOME
Date: Wed Sep  2 20:35:22 2015
HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
InstallationDate: Installed on 2015-07-26 (38 days ago)
InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-4.2.0-7-generic N/A
 linux-backports-modules-4.2.0-7-generic  N/A
 linux-firmware   1.147
SourcePackage: linux
UdevLog: Error: [Errno 2] No existe el archivo o el directorio: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/15/2013
dmi.bios.vendor: Phoenix Technologies Ltd.
dmi.bios.version: P14AAJ
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: SAMSUNG_NP1234567890
dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.board.version: FAB1
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 9
dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
dmi.product.name: 530U3C/530U4C
dmi.product.version: 0.1
dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

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


** Tags: amd64 apport-bug package-from-proposed wily

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

Title:
  systemd[1]: Failed to insert module 'kdbus': Function not implemented

Status in linux package in Ubuntu:
  New

Bug description:
  dmesg:
  [3.770177] systemd[1]: Failed to insert module 'kdbus': Function not 
implemented

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:35:22 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491658/+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 1449005] Re: trim does not work with Samsung 840 EVO after firmware update (EXT0DB6Q)

2015-09-02 Thread QIII
*** This bug is a duplicate of bug 1338706 ***
https://bugs.launchpad.net/bugs/1338706

The next time Samsung tech support tells you they don't support Linux,
ask them "Isn't that a bit odd, considering Samsung is a member of The
Linux Foundation?"

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

Title:
  trim does not work with Samsung 840 EVO after firmware update
  (EXT0DB6Q)

Status in fstrim package in Ubuntu:
  Invalid
Status in linux package in Ubuntu:
  Fix Released
Status in fstrim source package in Trusty:
  Invalid
Status in linux source package in Trusty:
  Fix Released
Status in fstrim source package in Utopic:
  Invalid
Status in linux source package in Utopic:
  Fix Released
Status in fstrim source package in Vivid:
  Invalid
Status in linux source package in Vivid:
  Fix Released

Bug description:
  Hi,
  after updating Samsung SSD 840 EVO to the latest firmware (EXT0DB6Q) the 
fstream command doesn't work anymore. Besides, there are a lot of file system 
errors and "bad sectors" reports. The problem is certainly caused by Samsung's 
firmware but I reported it as a bug because in Windows TRIM works normally 
after the upgrade. I have attached an image uploaded by a user who is 
experiencing the same problem. If you execute the command "sudo fstrim /" the  
console gets stuck. If you add that command in rc.local the boot is 
compromised. I really hope this problem could be solved.
  Thanks

  ===
  break-fix: - 6fc4d97a4987c5d247655a157a9377996626221a
  break-fix: - 9a9324d3969678d44b330e1230ad2c8ae67acf81

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fstrim/+bug/1449005/+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 1491656] Status changed to Confirmed

2015-09-02 Thread Brad Figg
This change was made by a bot.

** 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/1491656

Title:
  ACPI: Enabled 4 GPEs in block 00 to 3F

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  dmesg:
  [0.161885] ACPI: Enabled 4 GPEs in block 00 to 3F

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:30:23 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491656/+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 1491648] Re: ACPI: All ACPI Tables successfully acquired

2015-09-02 Thread Alberto Salvia Novella
@ Cristian Aravena Romero

But what's the problem with that? 

(After answering, please set this bug status back to "confirmed". Thank
you)

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

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

Title:
  ACPI: All ACPI Tables successfully acquired

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  dmesg:
  [0.010758] ACPI: All ACPI Tables successfully acquired

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: linux-image-4.2.0-7-generic 4.2.0-7.7
  ProcVersionSignature: Ubuntu 4.2.0-7.7-generic 4.2.0
  Uname: Linux 4.2.0-7-generic x86_64
  ApportVersion: 2.18-0ubuntu9
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   caravena   1187 F...m pulseaudio
   /dev/snd/controlC0:  caravena   1187 F pulseaudio
  CurrentDesktop: GNOME
  Date: Wed Sep  2 20:17:47 2015
  HibernationDevice: RESUME=UUID=360bd2d2-4f44-4311-86d6-4781ac81ee87
  InstallationDate: Installed on 2015-07-26 (38 days ago)
  InstallationMedia: Ubuntu-GNOME 15.10 "Wily Werewolf" - Alpha amd64 (20150723)
  MachineType: SAMSUNG ELECTRONICS CO., LTD. 530U3C/530U4C
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.2.0-7-generic 
root=UUID=4f4435ca-b877-47a5-9065-3dd624c0514e ro rootflags=subvol=@ quiet 
splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-4.2.0-7-generic N/A
   linux-backports-modules-4.2.0-7-generic  N/A
   linux-firmware   1.147
  SourcePackage: linux
  UdevLog: Error: [Errno 2] No existe el archivo o el directorio: 
'/var/log/udev'
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/15/2013
  dmi.bios.vendor: Phoenix Technologies Ltd.
  dmi.bios.version: P14AAJ
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: SAMSUNG_NP1234567890
  dmi.board.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.board.version: FAB1
  dmi.chassis.asset.tag: No Asset Tag
  dmi.chassis.type: 9
  dmi.chassis.vendor: SAMSUNG ELECTRONICS CO., LTD.
  dmi.chassis.version: 0.1
  dmi.modalias: 
dmi:bvnPhoenixTechnologiesLtd.:bvrP14AAJ:bd04/15/2013:svnSAMSUNGELECTRONICSCO.,LTD.:pn530U3C/530U4C:pvr0.1:rvnSAMSUNGELECTRONICSCO.,LTD.:rnSAMSUNG_NP1234567890:rvrFAB1:cvnSAMSUNGELECTRONICSCO.,LTD.:ct9:cvr0.1:
  dmi.product.name: 530U3C/530U4C
  dmi.product.version: 0.1
  dmi.sys.vendor: SAMSUNG ELECTRONICS CO., LTD.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1491648/+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 1490606] fozzie (amd64) - tests ran: 194, failed: 1

2015-09-02 Thread Brad Figg
tests ran: 194, failed: 1;
  
http://kernel.ubuntu.com/testing/fozzie__3.19.0-28.30__2015-09-03_01-02-00/results-index.html

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

Title:
  linux: 3.19.0-28.30 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 31. August 2015 15:07 UTC
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Wednesday, 02. September 2015 18:01 UTC
  kernel-stable-Verification-testing-start:Wednesday, 02. September 2015 18:01 
UTC
  kernel-stable-Certification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
  kernel-stable-Security-signoff-start:Wednesday, 02. September 2015 18:02 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Wednesday, 02. September 2015 18:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490606/+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 1462165] Re: CVE-2014-9729

2015-09-02 Thread John Johansen
** Description changed:

- [iinfo->i_lenAlloc != inode->i_size]
+ The udf_read_inode function in fs/udf/inode.c in the Linux kernel before
+ 3.18.2 does not ensure a certain data-structure size consistency, which
+ allows local users to cause a denial of service (system crash) via a
+ crafted UDF filesystem image.
  
  Break-Fix: - e159332b9af4b04d882dbcfe1bb0117f0a6d4b58

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

Title:
  CVE-2014-9729

Status in linux package in Ubuntu:
  Invalid
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-ec2 package in Ubuntu:
  Invalid
Status in linux-flo package in Ubuntu:
  New
Status in linux-fsl-imx51 package in Ubuntu:
  Invalid
Status in linux-goldfish package in Ubuntu:
  New
Status in linux-lts-backport-maverick package in Ubuntu:
  New
Status in linux-lts-backport-natty package in Ubuntu:
  New
Status in linux-lts-quantal package in Ubuntu:
  Invalid
Status in linux-lts-raring package in Ubuntu:
  Invalid
Status in linux-lts-saucy package in Ubuntu:
  Invalid
Status in linux-lts-trusty package in Ubuntu:
  Invalid
Status in linux-lts-utopic package in Ubuntu:
  Invalid
Status in linux-lts-vivid package in Ubuntu:
  Invalid
Status in linux-mako package in Ubuntu:
  New
Status in linux-manta package in Ubuntu:
  New
Status in linux-mvl-dove package in Ubuntu:
  Invalid
Status in linux-ti-omap4 package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  Fix Released
Status in linux-armadaxp source package in Precise:
  Fix Released
Status in linux-ec2 source package in Precise:
  Invalid
Status in linux-flo source package in Precise:
  Invalid
Status in linux-fsl-imx51 source package in Precise:
  Invalid
Status in linux-goldfish source package in Precise:
  Invalid
Status in linux-lts-backport-maverick source package in Precise:
  New
Status in linux-lts-backport-natty source package in Precise:
  New
Status in linux-lts-quantal source package in Precise:
  New
Status in linux-lts-raring source package in Precise:
  Invalid
Status in linux-lts-saucy source package in Precise:
  New
Status in linux-lts-trusty source package in Precise:
  Fix Released
Status in linux-lts-utopic source package in Precise:
  Invalid
Status in linux-lts-vivid source package in Precise:
  Invalid
Status in linux-mako source package in Precise:
  Invalid
Status in linux-manta source package in Precise:
  Invalid
Status in linux-mvl-dove source package in Precise:
  Invalid
Status in linux-ti-omap4 source package in Precise:
  Fix Released
Status in linux source package in Trusty:
  Fix Released
Status in linux-armadaxp source package in Trusty:
  Invalid
Status in linux-ec2 source package in Trusty:
  Invalid
Status in linux-flo source package in Trusty:
  Invalid
Status in linux-fsl-imx51 source package in Trusty:
  Invalid
Status in linux-goldfish source package in Trusty:
  Invalid
Status in linux-lts-backport-maverick source package in Trusty:
  New
Status in linux-lts-backport-natty source package in Trusty:
  New
Status in linux-lts-quantal source package in Trusty:
  Invalid
Status in linux-lts-raring source package in Trusty:
  Invalid
Status in linux-lts-saucy source package in Trusty:
  Invalid
Status in linux-lts-trusty source package in Trusty:
  Invalid
Status in linux-lts-utopic source package in Trusty:
  Fix Released
Status in linux-lts-vivid source package in Trusty:
  Invalid
Status in linux-mako source package in Trusty:
  Invalid
Status in linux-manta source package in Trusty:
  Invalid
Status in linux-mvl-dove source package in Trusty:
  Invalid
Status in linux-ti-omap4 source package in Trusty:
  Invalid
Status in linux-lts-backport-maverick source package in Utopic:
  New
Status in linux-lts-backport-natty source package in Utopic:
  New
Status in linux source package in Vivid:
  Invalid
Status in linux-armadaxp source package in Vivid:
  Invalid
Status in linux-ec2 source package in Vivid:
  Invalid
Status in linux-flo source package in Vivid:
  New
Status in linux-fsl-imx51 source package in Vivid:
  Invalid
Status in linux-goldfish source package in Vivid:
  New
Status in linux-lts-backport-maverick source package in Vivid:
  New
Status in linux-lts-backport-natty source package in Vivid:
  New
Status in linux-lts-quantal source package in Vivid:
  Invalid
Status in linux-lts-raring source package in Vivid:
  Invalid
Status in linux-lts-saucy source package in Vivid:
  Invalid
Status in linux-lts-trusty source package in Vivid:
  Invalid
Status in linux-lts-utopic source package in Vivid:
  Invalid
Status in linux-lts-vivid source package in Vivid:
  Invalid
Status in linux-mako source package in Vivid:
  New
Status in linux-manta source package in Vivid:
  New
Status in linux-mvl-dove source package in Vivid:
  Invalid
Status in linux-ti-omap4 source package in Vivid:
  Invalid
Status in linux source 

[Kernel-packages] [Bug 1487085] Re: Ubuntu 14.04.3 LTS Crash in notifier_call_chain after boot

2015-09-02 Thread bugproxy
** Tags added: bugnameltc-129216 severity-critical

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

Title:
  Ubuntu 14.04.3 LTS Crash in notifier_call_chain after boot

Status in linux package in Ubuntu:
  New
Status in linux source package in Vivid:
  Fix Committed

Bug description:
  SRU Justification:
  [Impact]
  Users of 3.19 kernel with power8 machines get a kernel crash on boot.

  [Test Case]
  Boot system.

  [Fix]
  commit 792f96e9a769b799a2944e9369e4ea1e467135b2 needed to be backported in 
addition to d7cf83fcaf1b1668201eae4cdd6e6fe7a2448654. Our 3.19 kernel had a 
partial backport of the first patch.

  --

  
  ---Problem Description---
  Installed Ubuntu 14.04.3 LTS on Palmetto and its crashing after booting to 
login.
  This happens every time I boot Ubuntu 14.04.3 LTS.  I've reinstalled Ubuntu 
and replaced the hard disk as well and re-installed.  Still crashing.

  ---uname output---
  Linux paul40 3.19.0-26-generic #28~14.04.1-Ubuntu SMP Wed Aug 12 14:10:52 UTC 
2015 ppc64le ppc64le ppc64le GNU/Linux

  Machine Type = Palmetto

  ---System Hang---
   Ubuntu OS crashes and cannot access host. Must reboot system

  ---Steps to Reproduce---
   Boot system

  Oops output:
   [   33.132376] Unable to handle kernel paging request for data at address 
0x200
  [   33.132565] Faulting instruction address: 0xc00dbc60
  [   33.133422] Oops: Kernel access of bad area, sig: 11 [#1]
  [   33.134410] SMP NR_CPUS=2048 NUMA PowerNV
  [   33.134478] Modules linked in: ast ttm drm_kms_helper joydev mac_hid 
drm hid_generic usbhid hid syscopyarea sysfillrect sysimgblt i2c_algo_bit 
ofpart cmdlinepart at24 uio_pdrv_genirq powernv_flash mtd ipmi_powernv 
powernv_rng opal_prd ipmi_msghandler uio uas usb_storage ahci libahci
  [   33.139112] CPU: 24 PID: 0 Comm: swapper/24 Not tainted 
3.19.0-26-generic #28~14.04.1-Ubuntu
  [   33.139943] task: c13cccb0 ti: c00fff70 task.ti: 
c1448000
  [   33.141642] NIP: c00dbc60 LR: c00dbd94 CTR: 

  [   33.142605] REGS: c00fff703980 TRAP: 0300   Not tainted  
(3.19.0-26-generic)
  [   33.143417] MSR: 90009033   CR: 
28002888  XER: 
  [   33.144244] CFAR: c0008468 DAR: 0200 DSISR: 
4000 SOFTE: 0
  GPR00: c00dbd94 c00fff703c00 c144cc00 c15f03c0
  GPR04: 0007 c15f03b8  
  GPR08:  0200 c006c394 90001003
  GPR12: 2200 cfb8d800 0058 
  GPR16: c1448000 c1448000 c1448080 c0e9a880
  GPR20: c1448080 0001 0002 0012
  GPR24: c00f1e432200   c15f03b8
  GPR28: 0007  c15f03c0 
  [   33.157013] NIP [c00dbc60] notifier_call_chain+0x70/0x100
  [   33.157818] LR [c00dbd94] atomic_notifier_call_chain+0x44/0x60
  [   33.162090] Call Trace:
  [   33.162845] [c00fff703c00] [0008] 0x8 (unreliable)
  [   33.163644] [c00fff703c50] [c00dbd94] 
atomic_notifier_call_chain+0x44/0x60
  [   33.164647] [c00fff703c90] [c006f2a8] 
opal_message_notify+0xa8/0x100
  [   33.165476] [c00fff703d00] [c00dbc88] 
notifier_call_chain+0x98/0x100
  [   33.167007] [c00fff703d50] [c00dbd94] 
atomic_notifier_call_chain+0x44/0x60
  [   33.167816] [c00fff703d90] [c006f654] 
opal_do_notifier.part.5+0x74/0xa0
  [   33.172166] [c00fff703dd0] [c006f6d8] 
opal_interrupt+0x58/0x70
  [   33.172997] [c00fff703e10] [c01273d0] 
handle_irq_event_percpu+0x90/0x2b0
  [   33.174507] [c00fff703ed0] [c0127658] 
handle_irq_event+0x68/0xd0
  [   33.175312] [c00fff703f00] [c012baf4] 
handle_fasteoi_irq+0xe4/0x240
  [   33.176124] [c00fff703f30] [c01265c8] 
generic_handle_irq+0x58/0x90
  [   33.176936] [c00fff703f60] [c0010f10] __do_irq+0x80/0x190
  [   33.182406] [c00fff703f90] [c002476c] call_do_irq+0x14/0x24
  [   33.183258] [c144ba30] [c00110c0] do_IRQ+0xa0/0x120
  [   33.184072] [c144ba90] [c00025d8] 
hardware_interrupt_common+0x158/0x180
  [   33.184907] --- interrupt: 501 at arch_local_irq_restore+0x5c/0x90
  [   33.184907] LR = arch_local_irq_restore+0x40/0x90
  [   33.186473] [c144bd80] [c00f2ae19808] 0xc00f2ae19808 
(unreliable)
  [   33.188024] [c144bda0] [c085d5d8] 
cpuidle_enter_state+0xa8/0x260
  [   33.192695] [c144be00] 

[Kernel-packages] [Bug 1468922] Re: [Toshiba Satellite C55D-B5310] bluetooth not working

2015-09-02 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  [Toshiba Satellite C55D-B5310] bluetooth not working

Status in linux package in Ubuntu:
  Expired

Bug description:
  built in bluetooth hasnt worked from lastest update

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-3.19.0-21-generic 3.19.0-21.21
  ProcVersionSignature: Ubuntu 3.19.0-21.21-generic 3.19.8
  Uname: Linux 3.19.0-21-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  shane  1417 F pulseaudio
   /dev/snd/controlC0:  shane  1417 F pulseaudio
  CurrentDesktop: GNOME-Flashback:Unity
  Date: Thu Jun 25 17:09:26 2015
  HibernationDevice: RESUME=UUID=7a1b1547-2fb4-4abf-853c-b0a7312d54dc
  InstallationDate: Installed on 2015-02-19 (126 days ago)
  InstallationMedia: Ubuntu 14.04.1 LTS "Trusty Tahr" - Release amd64 
(20140722.2)
  MachineType: TOSHIBA Satellite C55D-B
  ProcFB: 0 VESA VGA
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-21-generic 
root=UUID=36a3f366-98cd-4709-b998-d34f4fe124aa ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-21-generic N/A
   linux-backports-modules-3.19.0-21-generic  N/A
   linux-firmware 1.143.1
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 06/06/2014
  dmi.bios.vendor: TOSHIBA
  dmi.bios.version: 1.30
  dmi.board.asset.tag: *
  dmi.board.name: ZBWAE
  dmi.board.vendor: TOSHIBA
  dmi.board.version: 1.00
  dmi.chassis.asset.tag: *
  dmi.chassis.type: 10
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnTOSHIBA:bvr1.30:bd06/06/2014:svnTOSHIBA:pnSatelliteC55D-B:pvrPSCN4U-00T019:rvnTOSHIBA:rnZBWAE:rvr1.00:cvnToBeFilledByO.E.M.:ct10:cvrToBeFilledByO.E.M.:
  dmi.product.name: Satellite C55D-B
  dmi.product.version: PSCN4U-00T019
  dmi.sys.vendor: TOSHIBA

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1468922/+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 1469628] Re: alx module not working correctly

2015-09-02 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  alx module not working correctly

Status in linux package in Ubuntu:
  Expired

Bug description:
  Since when I upgraded from kernel linux-image-extra-3.19.0-16, alx module 
stopped working correctly. 
  a ping to a reachable host results in ~50% packet loss.
  Dmesg reports this: 

  [  336.763660] alx :02:00.0 eth0: fatal interrupt 0x400, resetting
  [  336.765816] alx :02:00.0 eth0: NIC Up: 100 Mbps Full
  [  372.883211] alx :02:00.0 eth0: fatal interrupt 0x400, resetting
  [  372.888582] alx :02:00.0 eth0: NIC Up: 100 Mbps Full
  [  414.519237] alx :02:00.0 eth0: fatal interrupt 0x400, resetting
  [  414.521448] alx :02:00.0 eth0: NIC Up: 100 Mbps Full

  
  With kernel linux-image-extra-3.19.0-16 everything works fine.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-image-extra-3.19.0-21-generic 3.19.0-21.21
  ProcVersionSignature: Ubuntu 3.19.0-16.16-generic 3.19.3
  Uname: Linux 3.19.0-16-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  cernio 2994 F pulseaudio
   /dev/snd/controlC1:  cernio 2994 F pulseaudio
  Date: Mon Jun 29 10:02:42 2015
  HibernationDevice: RESUME=UUID=437ac68c-76ff-428e-bd50-2010ba6942a5
  InstallationDate: Installed on 2013-06-06 (752 days ago)
  InstallationMedia: Ubuntu 13.04 "Raring Ringtail" - Release amd64 (20130424)
  IwConfig:
   eth0  no wireless extensions.
   
   lono wireless extensions.
  MachineType: Hewlett-Packard HP Elite 7500 Series MT
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-16-generic 
root=UUID=3b531c07-650c-4606-a86a-a7bf55d6af98 ro quiet splash vt.handoff=7
  PulseList:
   Error: command ['pacmd', 'list'] failed with exit code 1: Home directory not 
accessible: Permission denied
   No PulseAudio daemon running, or not running as session daemon.
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-16-generic N/A
   linux-backports-modules-3.19.0-16-generic  N/A
   linux-firmware 1.143.1
  RfKill:
   
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 02/06/2013
  dmi.bios.vendor: AMI
  dmi.bios.version: 8.17
  dmi.board.name: 2AD5
  dmi.board.vendor: PEGATRON CORPORATION
  dmi.board.version: 1.03
  dmi.chassis.asset.tag: CZC3110LN2
  dmi.chassis.type: 3
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnAMI:bvr8.17:bd02/06/2013:svnHewlett-Packard:pnHPElite7500SeriesMT:pvr1.00:rvnPEGATRONCORPORATION:rn2AD5:rvr1.03:cvnHewlett-Packard:ct3:cvr:
  dmi.product.name: HP Elite 7500 Series MT
  dmi.product.version: 1.00
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1469628/+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 1443648] Re: Kernel panics on iSER (iscsi over IB) logouts

2015-09-02 Thread Rafael David Tinoco
2nd verification:

https://bugs.launchpad.net/ubuntu/+source/libibverbs/+bug/1409904/comments/88

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

Title:
  Kernel panics on iSER (iscsi over IB) logouts

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

Bug description:
  SRU Justification:

  Impact: After iSER was fixed by LP: #1409904 iscsi logouts cause panics.
  Fix: Upstream development and devel bisection between 3.13 and 3.16.
  Testcase: To use iSER and shut down the open-iscsi daemon (comment #8). 

  -

  While shutting down the "open-iscsi" daemon (with an iSER mapped
  volume from other host) I'm getting the following kernel panic for
  kernel 3.13.0-49:

  """
  [272820.948946] scsi15 : iSCSI Initiator over iSER
  [272843.474551] sd 14:0:0:1: [sdc] Synchronizing SCSI cache
  [272843.998231] BUG: unable to handle kernel paging request at 
a03840b7
  [272843.998258] IP: [] 0xa03840b7
  [272843.998278] PGD 1c11067 PUD 1c12063 PMD 80afb5067 PTE 0
  [272843.998306] Oops: 0010 [#1] SMP
  [272843.998324] Modules linked in: rdma_ucm ib_ucm ib_srp scsi_transport_srp 
scsi_tgt ib_srpt ib_mthca ib_ipa
  [272843.998742] CPU: 1 PID: 32399 Comm: kworker/1:0 Not tainted 
3.13.0-49-generic #81-Ubuntu
  [272843.998758] Hardware name: HP ProLiant DL360e Gen8, BIOS P73 11/12/2013
  [272843.998774] Workqueue: ib_cm cm_work_handler [ib_cm]
  [272843.998789] task: 88080b72c800 ti: 880802522000 task.ti: 
880802522000
  [272843.998827] RIP: 0010:[]  [] 
0xa03840b7
  [272843.998870] RSP: 0018:880802523c28  EFLAGS: 00010296
  [272843.998893] RAX: 8800b851d801 RBX: 8807af8482b8 RCX: 
00018028
  [272843.998929] RDX: 00018029 RSI: 8028 RDI: 
88081f003900
  [272843.998965] RBP: 880802523c30 R08:  R09: 
0001
  [272843.999002] R10: ea0002e14740 R11: a00e0b9a R12: 
88080953e400
  [272843.999038] R13: 8807af8482b8 R14: 88080953e400 R15: 

  [272843.999075] FS:  () GS:88083f42() 
knlGS:
  [272843.999113] CS:  0010 DS:  ES:  CR0: 80050033
  [272843.999136] CR2: a03840b7 CR3: 0008024f1000 CR4: 
000407e0
  [272843.999173] Stack:
  [272843.999191]  8807af54 880802523c60 a0386425 
8807af8482b8
  [272843.999245]  88080953e400 88080acf9fa8 880802523cf0 
880802523ca0
  [272843.999297]  a0384f58 810aacc4 8807af8482b8 
8807af8482d0
  [272843.999349] Call Trace:
  [272843.999378]  [] ? __wake_up+0x44/0x50
  [272843.999406]  [] ? cma_comp_exch+0x4b/0x60 [rdma_cm]
  [272843.999432]  [] ? cma_ib_handler+0xf9/0x230 [rdma_cm]
  [272843.999460]  [] ? cm_process_work+0x26/0x150 [ib_cm]
  [272843.999487]  [] ? cm_work_handler+0xa83/0x161c [ib_cm]
  [272843.999515]  [] ? process_one_work+0x182/0x450
  [272843.999540]  [] ? worker_thread+0x121/0x410
  [272843.999565]  [] ? rescuer_thread+0x430/0x430
  [272843.999590]  [] ? kthread+0xd2/0xf0
  [272843.999615]  [] ? kthread_create_on_node+0x1c0/0x1c0
  [272843.999641]  [] ? ret_from_fork+0x7c/0xb0
  [272843.999666]  [] ? kthread_create_on_node+0x1c0/0x1c0
  [272843.999691] Code:  Bad RIP value.
  [272843.999721] RIP  [] 0xa03840b7
  [272843.999749]  RSP 
  [272843.999770] CR2: a03840b7
  """
  I got also this one (looks the same):

  """
  [  479.240278] BUG: unable to handle kernel paging request at a04af0b7
  [  479.240453] IP: [] 0xa04af0b7
  [  479.240572] PGD 1c11067 PUD 1c12063 PMD 80bccf067 PTE 0
  [  479.240849] Oops: 0010 [#1] SMP
  [  479.241014] Modules linked in: ip6table_filter ip6_tables iptable_filter 
ip_tables ebtable_nat ebtables x_
  [  479.245546]
  [  479.245603] CPU: 2 PID: 257 Comm: kworker/2:1 Not tainted 
3.13.0-49-generic #81-Ubuntu
  [  479.245668] Hardware name: HP ProLiant DL360e Gen8, BIOS P73 11/12/2013
  [  479.245734] Workqueue: ib_cm cm_work_handler [ib_cm]
  [  479.245847] task: 880811ad6000 ti: 88081142 task.ti: 
88081142
  [  479.245923] RIP: 0010:[]  [] 
0xa04af0b7
  [  479.246065] RSP: 0018:880811421c28  EFLAGS: 00010296
  [  479.246138] RAX: 8807f6d85501 RBX: 8807e613a2b8 RCX: 
00018029
  [  479.246212] RDX: 0001802a RSI: 8029 RDI: 
88081f003900
  [  479.246287] RBP: 880811421c30 R08:  R09: 
0001
  [  479.246361] R10: ea001fdb6140 R11: a00f7b9a R12: 
8807e6238c00
  [  479.246435] R13: 8807e613a2b8 R14: 8807e6238c00 R15: 

  [  479.246510] FS:  () GS:88083f44() 
knlGS:
  [  479.246597] CS:  0010 DS:  ES:  CR0: 80050033
  [  479.246669] CR2: 

[Kernel-packages] [Bug 1462167] Re: CVE-2014-9730

2015-09-02 Thread John Johansen
** Description changed:

- [properly ignore component length for component types that do not use
- it]
+ The udf_pc_to_char function in fs/udf/symlink.c in the Linux kernel
+ before 3.18.2 relies on component lengths that are unused, which allows
+ local users to cause a denial of service (system crash) via a crafted
+ UDF filesystem image.
  
  Break-Fix: - e237ec37ec154564f8690c5bd1795339955eeef9

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

Title:
  CVE-2014-9730

Status in linux package in Ubuntu:
  Invalid
Status in linux-armadaxp package in Ubuntu:
  Invalid
Status in linux-ec2 package in Ubuntu:
  Invalid
Status in linux-flo package in Ubuntu:
  New
Status in linux-fsl-imx51 package in Ubuntu:
  Invalid
Status in linux-goldfish package in Ubuntu:
  New
Status in linux-lts-backport-maverick package in Ubuntu:
  New
Status in linux-lts-backport-natty package in Ubuntu:
  New
Status in linux-lts-quantal package in Ubuntu:
  Invalid
Status in linux-lts-raring package in Ubuntu:
  Invalid
Status in linux-lts-saucy package in Ubuntu:
  Invalid
Status in linux-lts-trusty package in Ubuntu:
  Invalid
Status in linux-lts-utopic package in Ubuntu:
  Invalid
Status in linux-lts-vivid package in Ubuntu:
  Invalid
Status in linux-mako package in Ubuntu:
  New
Status in linux-manta package in Ubuntu:
  New
Status in linux-mvl-dove package in Ubuntu:
  Invalid
Status in linux-ti-omap4 package in Ubuntu:
  Invalid
Status in linux source package in Precise:
  Fix Released
Status in linux-armadaxp source package in Precise:
  Fix Released
Status in linux-ec2 source package in Precise:
  Invalid
Status in linux-flo source package in Precise:
  Invalid
Status in linux-fsl-imx51 source package in Precise:
  Invalid
Status in linux-goldfish source package in Precise:
  Invalid
Status in linux-lts-backport-maverick source package in Precise:
  New
Status in linux-lts-backport-natty source package in Precise:
  New
Status in linux-lts-quantal source package in Precise:
  New
Status in linux-lts-raring source package in Precise:
  Invalid
Status in linux-lts-saucy source package in Precise:
  New
Status in linux-lts-trusty source package in Precise:
  Fix Released
Status in linux-lts-utopic source package in Precise:
  Invalid
Status in linux-lts-vivid source package in Precise:
  Invalid
Status in linux-mako source package in Precise:
  Invalid
Status in linux-manta source package in Precise:
  Invalid
Status in linux-mvl-dove source package in Precise:
  Invalid
Status in linux-ti-omap4 source package in Precise:
  Fix Released
Status in linux source package in Trusty:
  Fix Released
Status in linux-armadaxp source package in Trusty:
  Invalid
Status in linux-ec2 source package in Trusty:
  Invalid
Status in linux-flo source package in Trusty:
  Invalid
Status in linux-fsl-imx51 source package in Trusty:
  Invalid
Status in linux-goldfish source package in Trusty:
  Invalid
Status in linux-lts-backport-maverick source package in Trusty:
  New
Status in linux-lts-backport-natty source package in Trusty:
  New
Status in linux-lts-quantal source package in Trusty:
  Invalid
Status in linux-lts-raring source package in Trusty:
  Invalid
Status in linux-lts-saucy source package in Trusty:
  Invalid
Status in linux-lts-trusty source package in Trusty:
  Invalid
Status in linux-lts-utopic source package in Trusty:
  Fix Released
Status in linux-lts-vivid source package in Trusty:
  Invalid
Status in linux-mako source package in Trusty:
  Invalid
Status in linux-manta source package in Trusty:
  Invalid
Status in linux-mvl-dove source package in Trusty:
  Invalid
Status in linux-ti-omap4 source package in Trusty:
  Invalid
Status in linux-lts-backport-maverick source package in Utopic:
  New
Status in linux-lts-backport-natty source package in Utopic:
  New
Status in linux source package in Vivid:
  Invalid
Status in linux-armadaxp source package in Vivid:
  Invalid
Status in linux-ec2 source package in Vivid:
  Invalid
Status in linux-flo source package in Vivid:
  New
Status in linux-fsl-imx51 source package in Vivid:
  Invalid
Status in linux-goldfish source package in Vivid:
  New
Status in linux-lts-backport-maverick source package in Vivid:
  New
Status in linux-lts-backport-natty source package in Vivid:
  New
Status in linux-lts-quantal source package in Vivid:
  Invalid
Status in linux-lts-raring source package in Vivid:
  Invalid
Status in linux-lts-saucy source package in Vivid:
  Invalid
Status in linux-lts-trusty source package in Vivid:
  Invalid
Status in linux-lts-utopic source package in Vivid:
  Invalid
Status in linux-lts-vivid source package in Vivid:
  Invalid
Status in linux-mako source package in Vivid:
  New
Status in linux-manta source package in Vivid:
  New
Status in linux-mvl-dove source package in Vivid:
  Invalid
Status in linux-ti-omap4 source package in Vivid:
  Invalid

[Kernel-packages] [Bug 1486099] Re: Crash of Xorg under intel drm

2015-09-02 Thread Trevor Rudolph
I'd like to update the issue and say that it still exists under 4.2.0 as
well. Should I be posting a new bug with logs from 4.2.0?

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

Title:
  Crash of Xorg under intel drm

Status in linux package in Ubuntu:
  Incomplete

Bug description:
  I am using an older Ubuntu mainline kernel with Vivid. The computer I
  am using is a Dell XPS 9343 which is known not to do too well with
  linux, like most new dell computers. However the only issue that
  actively bothers me the fact that Xorg is getting crashed all the time
  by the frame buffer drm in the intel driver. This can be observer in
  this trace,

  [33477.084660] [ cut here ]
  [33477.084688] WARNING: CPU: 0 PID: 901 at 
/build/linux-OdodyZ/linux-3.19.0/drivers/gpu/drm/i915/intel_display.c:1256 
assert_plane.constprop.87+0x7b/0x90 [i915]()
  [33477.084689] plane A assertion failure (expected on, current off)
  [33477.084706] Modules linked in: isofs pci_stub vboxpci(OE) vboxnetadp(OE) 
vboxnetflt(OE) vboxdrv(OE) binfmt_misc rfcomm bnep nls_iso8859_1 cdc_acm btusb 
bluetooth uvcvideo videobuf2_vmalloc videobuf2_memops videobuf2_core 
v4l2_common videodev media usbhid joydev snd_hda_codec_hdmi wl(POE) dell_wmi 
hid_multitouch sparse_keymap intel_rapl iosf_mbi x86_pkg_temp_thermal 
intel_powerclamp coretemp kvm_intel dell_laptop dcdbas kvm crct10dif_pclmul 
crc32_pclmul ghash_clmulni_intel aesni_intel aes_x86_64 lrw gf128mul 
glue_helper ablk_helper cryptd serio_raw dell_led snd_hda_codec_realtek 
snd_soc_rt286 snd_hda_codec_generic snd_soc_core snd_compress snd_pcm_dmaengine 
i915 lpc_ich snd_hda_intel snd_seq_midi snd_hda_controller snd_seq_midi_event 
cfg80211 snd_hda_codec snd_hwdep rtsx_pci_ms drm_kms_helper memstick
  [33477.084720]  mei_me snd_rawmidi snd_pcm drm i2c_algo_bit shpchp mei wmi 
int3403_thermal soc_button_array snd_seq snd_seq_device snd_timer snd soundcore 
i2c_hid hid video dw_dmac dw_dmac_core snd_soc_sst_acpi 8250_dw 
i2c_designware_platform i2c_designware_core spi_pxa2xx_platform int3402_thermal 
int3400_thermal acpi_thermal_rel processor_thermal_device acpi_pad mac_hid 
parport_pc ppdev lp parport autofs4 uas usb_storage rtsx_pci_sdmmc psmouse ahci 
libahci sdhci_acpi sdhci rtsx_pci
  [33477.084722] CPU: 0 PID: 901 Comm: Xorg Tainted: PW  OE  
3.19.0-25-generic #26-Ubuntu
  [33477.084723] Hardware name: Dell Inc. XPS 13 9343/0310JH, BIOS A05 
07/14/2015
  [33477.084725]  c0611310 880212b076f8 817c4518 
888e888e
  [33477.084726]  880212b07748 880212b07738 81076a6a 
8802134c4200
  [33477.084727]   880212f3d000 880036582800 
880036582800
  [33477.084727] Call Trace:
  [33477.084732]  [] dump_stack+0x45/0x57
  [33477.084735]  [] warn_slowpath_common+0x8a/0xc0
  [33477.084736]  [] warn_slowpath_fmt+0x46/0x50
  [33477.084751]  [] assert_plane.constprop.87+0x7b/0x90 
[i915]
  [33477.084764]  [] hsw_disable_ips+0x41/0x190 [i915]
  [33477.084777]  [] intel_crtc_disable_planes+0x48/0x140 
[i915]
  [33477.084788]  [] haswell_crtc_disable+0x4f/0x3c0 [i915]
  [33477.084800]  [] __intel_set_mode+0xa59/0xc80 [i915]
  [33477.084812]  [] intel_crtc_set_config+0xbfb/0xf70 [i915]
  [33477.084815]  [] ? __enqueue_entity+0x78/0x80
  [33477.084827]  [] drm_mode_set_config_internal+0x66/0x100 
[drm]
  [33477.084833]  [] restore_fbdev_mode+0xc8/0xf0 
[drm_kms_helper]
  [33477.084839]  [] 
drm_fb_helper_restore_fbdev_mode_unlocked+0x29/0x80 [drm_kms_helper]
  [33477.084843]  [] drm_fb_helper_set_par+0x22/0x50 
[drm_kms_helper]
  [33477.084857]  [] intel_fbdev_set_par+0x1a/0x60 [i915]
  [33477.084859]  [] fb_set_var+0x18a/0x410
  [33477.084862]  [] ? check_preempt_curr+0x89/0xa0
  [33477.084863]  [] ? __enqueue_entity+0x78/0x80
  [33477.084865]  [] ? enqueue_entity+0x400/0xc30
  [33477.084867]  [] fbcon_blank+0x229/0x300
  [33477.084869]  [] do_unblank_screen+0xba/0x1f0
  [33477.084872]  [] complete_change_console+0x5d/0xf0
  [33477.084873]  [] vt_ioctl+0x118a/0x1460
  [33477.084881]  [] ? drm_ioctl+0x8c/0x680 [drm]
  [33477.084883]  [] tty_ioctl+0x411/0xcb0
  [33477.084886]  [] ? do_readv_writev+0x185/0x280
  [33477.084888]  [] do_vfs_ioctl+0x2e0/0x4e0
  [33477.084889]  [] SyS_ioctl+0x81/0xa0
  [33477.084890]  [] system_call_fastpath+0x16/0x1b
  [33477.084891] ---[ end trace 4514549be501e890 ]---
  [33479.411280] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU 
pipe A FIFO underrun

  I can confirm that the crash occurs in different ways according to
  different traces I've read but it would be impossible to compile all
  of them. The crashes of the screen are not apparent to any function
  done on the user end. They are random and can sometimes be very spaced
  out or sometimes happen many times in a row. In order to get the
  screen working without restarting lightdm, I 

[Kernel-packages] [Bug 1172852] Re: USB keyboard and mouse don't work

2015-09-02 Thread Ross Pert
Yes affects me too, 15.04

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

Title:
  USB keyboard and mouse don't work

Status in linux package in Ubuntu:
  Confirmed

Bug description:
  I am installing Ubuntu 13.04 from a live USB key.  I downloaded the
  stable amd64 iso of Ubuntu 13.04 after it was released today.  It runs
  beautifully from a live USB key.  However, after installing the OS to
  my hard drive and rebooting, the keyboard and mouse both fail to work.
  They are standard USB input devices (US layout) which have worked for
  years on other versions of Red Hat and Ubuntu.  They work fine with
  the live USB version of the OS.

  I can't even log into the computer to collect bug data.  I've tried
  reinstalling several times, changing the install options.  Installing
  fresh on this computer, keeping only my old /home partition, and
  disallowing the installation of third-party software still produces
  the error.

  The same system has run several previous versions of Ubuntu without
  problems.

  Thanks for your help.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1172852/+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 1017072] Re: 046d:08c1 Regression: Quickcam Fusion doesn't work after first time

2015-09-02 Thread Eric Ding
That fix was from three hours ago, and made it into mainline 3.6, I
believe. I've long since switched computers and haven't tested it
recently, but I would assume it has long since made it into Ubuntu's
releases.

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

Title:
  046d:08c1 Regression: Quickcam Fusion doesn't work after first time

Status in Linux:
  Fix Released
Status in linux package in Ubuntu:
  Triaged

Bug description:
  The first time I plug in this webcam, it seems to work ok (e.g., in
  guvcview). If I turn off the webcam and then turn it on again, all I
  see is a noisy screen with lots of multicolored horizontal lines (see
  attached; colors change in response to waving my hand in front of
  webcam lens, so I know it's still receiving/processing video from
  camera). Sometimes, it works the second time, but after a few more
  times, I see the video with just noise again.

  I see this problem after upgrading from Maverick straight to Precise.
  This is reminiscent of bug 865131, which expired on 2012-05-30. I've
  tested with mainline kernel 3.4 as well, with similar results.

  046d:08c1 Logitech, Inc. QuickCam Fusion

  WORKAROUND: If I unplug the webcam and then plug it back in, then the
  video shows up again -- at least for one time.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: linux-image-3.2.0-25-generic-pae 3.2.0-25.40
  ProcVersionSignature: Ubuntu 3.2.0-25.40-generic-pae 3.2.18
  Uname: Linux 3.2.0-25-generic-pae i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 2.0.1-0ubuntu8
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC1:  ericding   3287 F pulseaudio
   /dev/snd/controlC0:  ericding   3287 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xfe02 irq 48'
     Mixer name : 'Analog Devices AD1984'
     Components : 'HDA:11d41984,17aa20d7,00100400'
     Controls  : 32
     Simple ctrls  : 20
  Card1.Amixer.info:
   Card hw:1 'U0x46d0x8c1'/'USB Device 0x46d:0x8c1 at usb-:00:1d.7-1, high 
speed'
     Mixer name : 'USB Mixer'
     Components : 'USB046d:08c1'
     Controls  : 2
     Simple ctrls  : 1
  Card1.Amixer.values:
   Simple mixer control 'Mic',0
     Capabilities: cvolume cvolume-joined cswitch cswitch-joined penum
     Capture channels: Mono
     Limits: Capture 0 - 3072
     Mono: Capture 1536 [50%] [24.00dB] [on]
  Card29.Amixer.info:
   Card hw:29 'ThinkPadEC'/'ThinkPad Console Audio Control at EC reg 0x30, fw 
7KHT24WW-1.08'
     Mixer name : 'ThinkPad EC 7KHT24WW-1.08'
     Components : ''
     Controls  : 1
     Simple ctrls  : 1
  Card29.Amixer.values:
   Simple mixer control 'Console',0
     Capabilities: pswitch pswitch-joined penum
     Playback channels: Mono
     Mono: Playback [on]
  Date: Sun Jun 24 15:37:19 2012
  HibernationDevice: RESUME=UUID=659e091f-4341-4c37-85eb-04642310de7a
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 
(20120423)
  MachineType: LENOVO 7732CTO
  PccardctlIdent:
   Socket 0:
     no product info available
  PccardctlStatus:
   Socket 0:
     no card
  ProcEnviron:
   TERM=xterm
   PATH=(custom, user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.2.0-25-generic-pae 
root=/dev/mapper/vg-root ro quiet splash
  RelatedPackageVersions:
   linux-restricted-modules-3.2.0-25-generic-pae N/A
   linux-backports-modules-3.2.0-25-generic-pae  N/A
   linux-firmware1.79
  SourcePackage: linux
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/11/2009
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 7LETC6WW (2.26 )
  dmi.board.name: 7732CTO
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr7LETC6WW(2.26):bd05/11/2009:svnLENOVO:pn7732CTO:pvrThinkPadR61/R61i:rvnLENOVO:rn7732CTO:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 7732CTO
  dmi.product.version: ThinkPad R61/R61i
  dmi.sys.vendor: LENOVO

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1017072/+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 1490606] onibi (amd64) - tests ran: 194, failed: 1

2015-09-02 Thread Brad Figg
tests ran: 194, failed: 1;
  
http://kernel.ubuntu.com/testing/onibi__3.19.0-28.30__2015-09-03_01-25-00/results-index.html

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

Title:
  linux: 3.19.0-28.30 -proposed tracker

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

Bug description:
  This bug is for tracking the 3.19.0-28.30 upload package. This bug
  will contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-stable-Prepare-package-start:Monday, 31. August 2015 15:07 UTC
  kernel-stable-Prepare-package-end:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-start:Tuesday, 01. September 2015 01:04 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 16:18 UTC
  kernel-stable-phase:Verification & Testing
  kernel-stable-phase-changed:Wednesday, 02. September 2015 18:01 UTC
  kernel-stable-Verification-testing-start:Wednesday, 02. September 2015 18:01 
UTC
  kernel-stable-Certification-testing-start:Wednesday, 02. September 2015 18:02 
UTC
  kernel-stable-Security-signoff-start:Wednesday, 02. September 2015 18:02 UTC
  proposed-announcement-sent:True
  kernel-stable-Regression-testing-start:Wednesday, 02. September 2015 18:02 UTC

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-sru-workflow/+bug/1490606/+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 1490564] larsen (i386) - tests ran: 167, failed: 0

2015-09-02 Thread Brad Figg
tests ran: 167, failed: 0;
  
http://kernel.ubuntu.com/testing/larsen__4.1.0-3.3__2015-09-02_22-31-00/results-index.html

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1490564] onza (amd64) - tests ran: 197, failed: 18

2015-09-02 Thread Brad Figg
tests ran: 197, failed: 18;
  
http://kernel.ubuntu.com/testing/onza__4.1.0-3.3__2015-09-02_18-27-00/results-index.html

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

Title:
  linux: 4.2.0-7.7 -proposed tracker

Status in Kernel Development Workflow:
  In Progress
Status in Kernel Development Workflow package-testing series:
  Confirmed
Status in Kernel Development Workflow prepare-package series:
  Fix Released
Status in Kernel Development Workflow prepare-package-meta series:
  Fix Released
Status in Kernel Development Workflow prepare-package-signed series:
  Fix Released
Status in Kernel Development Workflow promote-to-proposed series:
  Fix Released
Status in Kernel Development Workflow promote-to-release series:
  New
Status in linux package in Ubuntu:
  Confirmed
Status in linux source package in Wily:
  Confirmed

Bug description:
  This bug is for tracking the 4.2.0-7.7 upload package. This bug will
  contain status and testing results related to that upload.

  For an explanation of the tasks and the associated workflow see: 
https://wiki.ubuntu.com/Kernel/kernel-sru-workflow
  kernel-Prepare-package-start:Monday, 31. August 2015 13:18 UTC
  kernel-Package-testing-start:Tuesday, 01. September 2015 01:00 UTC
  kernel-phase:Testing
  kernel-phase-changed:Tuesday, 01. September 2015 01:00 UTC
  kernel-Prepare-package-end:Tuesday, 01. September 2015 01:00 UTC
  kernel-stable-Promote-to-proposed-end:Wednesday, 02. September 2015 17:00 UTC
  proposed-announcement-sent:True

To manage notifications about this bug go to:
https://bugs.launchpad.net/kernel-development-workflow/+bug/1490564/+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 1467260] Re: USB drives are not mounting

2015-09-02 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  USB drives are not mounting

Status in linux package in Ubuntu:
  Expired

Bug description:
  USB drives are not mounting in the system. The same drives are
  detected in Windows 7. I have three USB pen drives none of them are
  being recognized.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: linux-image-3.13.0-54-generic 3.13.0-54.91
  ProcVersionSignature: Ubuntu 3.13.0-54.91-generic 3.13.11-ckt20
  Uname: Linux 3.13.0-54-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.11
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  ubuntu 2834 F pulseaudio
   /dev/snd/controlC1:  ubuntu 2834 F pulseaudio
  CurrentDesktop: Unity
  Date: Sun Jun 21 19:16:46 2015
  GvfsMonitorLog: Monitoring events. Press Ctrl+C to quit.
  HibernationDevice: RESUME=UUID=02c9079d-6ac3-4c91-9e92-131e6fd5393d
  HotplugNewDevices:
   
  HotplugNewMounts:
   
  InstallationDate: Installed on 2014-09-16 (277 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  MachineType: Hewlett-Packard HP ProBook 440 G1
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-54-generic 
root=UUID=5a82daa7-3cec-40f4-b001-a06b1cca4c77 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.13.0-54-generic N/A
   linux-backports-modules-3.13.0-54-generic  N/A
   linux-firmware 1.127.12
  RfKill:
   0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
  SourcePackage: linux
  Symptom: storage
  UdevMonitorLog:
   monitor will print the received events for:
   UDEV - the event which udev sends out after rule processing
  UdisksMonitorLog:
   Monitoring the udisks daemon. Press Ctrl+C to exit.
   19:17:05.299: The udisks-daemon is running (name-owner :1.145).
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 04/29/2014
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: L74 Ver. 01.09
  dmi.board.name: 1944
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: KBC Version 89.10
  dmi.chassis.asset.tag: INA436RWQZ
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrL74Ver.01.09:bd04/29/2014:svnHewlett-Packard:pnHPProBook440G1:pvrA3008CD10003:rvnHewlett-Packard:rn1944:rvrKBCVersion89.10:cvnHewlett-Packard:ct10:cvr:
  dmi.product.name: HP ProBook 440 G1
  dmi.product.version: A3008CD10003
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1467260/+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 1082418] Re: [Fujitsu Lifebook AH532] Ubuntu UEFI install locks out UEFI firmware (~bios) access

2015-09-02 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  [Fujitsu Lifebook AH532] Ubuntu UEFI install locks out UEFI firmware
  (~bios) access

Status in linux package in Ubuntu:
  Expired

Bug description:
  lsb_release -rd
  Description:  Ubuntu 12.10
  Release:  12.10

  apt-cache policy grub-efi-amd64
  grub-efi-amd64:
Installed: 2.00-7ubuntu11
Candidate: 2.00-7ubuntu11

  
  Pheonix Secure Core Tiano bios version 1.09

  New laptop Fujitsu Lifebook AH532. Windows 7 preinstalled. All
  functions worked normally when running Win7. Ubuntu 12.10 installed
  using whole disk. Installation successful Ubuntu boots and runs
  normally, however all access to the bios has now been lost. Pressing
  the default key (f2) during boot up is acknowledged by bios beep, but
  ignored and Ubuntu continues booting. In addition the 'boot choices'
  menu (f12) contains nothing but Ubuntu making it impossible to boot
  from USB or CD/DVD.

  The latter (f12) problem was overcome by opening up the machine,
  removing the ram and shorting the cl1/cl2 posts with a screwdriver.
  This restores the ability to boot from USB/CD by pressing f12 but does
  not restore bios access.

  The following recovery actions have been tried.
  1) Install Boot-Repair, run repair, no change occurred. Boot repair report 
here:
  http://paste.ubuntu.com/1375041/

  2) Restore Windows from Clonezilla disk image (factory settings) -
  result - bios access is no longer possible from windows either, f2 now
  launches the Windows boot menu.

  3) Update all drivers using Fujitsu driver update tool from within
  windows (which included a bios update). Result - no change, no bios.

  4) Restored Ubuntu from Clonezilla disk image - no change.

  5) Added second distro to disk. Installed successfully (uefi mode as
  that is all I have) no change to bios access.

  So overall result I have lost all bios access even from a reinstalled
  Windows. I repeat that bios access was perfectly normal before
  installing Ubuntu.

  I strongly suggest you read the contents of this thread in addition to
  the information here:

  http://ubuntuforums.org/showthread.php?t=2086602

  ProblemType: Bug
  DistroRelease: Ubuntu 12.10
  Package: grub-efi 2.00-7ubuntu11
  ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
  Uname: Linux 3.5.0-18-generic x86_64
  ApportVersion: 2.6.1-0ubuntu6
  Architecture: amd64
  Date: Fri Nov 23 15:50:07 2012
  InstallationDate: Installed on 2012-11-22 (1 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MarkForUpload: True
  SourcePackage: grub2
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1082418/+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 1469145] Re: Bluetooth device sometimes instantly turns off again after turning it on

2015-09-02 Thread Launchpad Bug Tracker
[Expired for linux (Ubuntu) because there has been no activity for 60
days.]

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

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

Title:
  Bluetooth device sometimes instantly turns off again after turning it
  on

Status in linux package in Ubuntu:
  Expired

Bug description:
  Sometimes when turning on bluetooth in the gnome bluetooth panel, it
  is shown as "On" for like a second and reverts back to "Off". This is
  what I see in dmesg:

  [1199362.625284] usb 1-1.4: Product: Broadcom Bluetooth Device
  [1199362.625286] usb 1-1.4: Manufacturer: Broadcom Corp
  [1199362.625287] usb 1-1.4: SerialNumber: EC55F9EFBB65
  [1199362.839031] usb 1-1.4: USB disconnect, device number 10
  [1199371.232776] usb 1-1.4: new full-speed USB device number 11 using ehci-pci
  [1199371.330552] usb 1-1.4: New USB device found, idVendor=0a5c, 
idProduct=217f
  [1199371.330556] usb 1-1.4: New USB device strings: Mfr=1, Product=2, 
SerialNumber=3
  [1199371.330559] usb 1-1.4: Product: Broadcom Bluetooth Device
  [1199371.330560] usb 1-1.4: Manufacturer: Broadcom Corp
  [1199371.330562] usb 1-1.4: SerialNumber: EC55F9EFBB65
  [1199371.544424] usb 1-1.4: USB disconnect, device number 11

  This situation is usually triggered after waking up from suspend, and then 
permanent up to the next reboot.
  I would assume the USB disconnect is the problem. I don't have bluetooth 
disabled in the BIOS settings.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: linux-generic 3.19.0.21.20
  ProcVersionSignature: Ubuntu 3.19.0-18.18-generic 3.19.6
  Uname: Linux 3.19.0-18-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/pcmC0D0p:   jonas  1889 F...m pulseaudio
   /dev/snd/controlC0:  jonas  1889 F pulseaudio
  CurrentDesktop: GNOME
  Date: Fri Jun 26 14:18:56 2015
  MachineType: LENOVO 429137G
  ProcEnviron:
   TERM=xterm
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcFB: 0 inteldrmfb
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.19.0-18-generic 
root=UUID=ee26293f-6471-4bb2-abe2-a8faf67adf96 ro quiet splash vt.handoff=7
  RelatedPackageVersions:
   linux-restricted-modules-3.19.0-18-generic N/A
   linux-backports-modules-3.19.0-18-generic  N/A
   linux-firmware 1.143.1
  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: 12/01/2011
  dmi.bios.vendor: LENOVO
  dmi.bios.version: 8DET56WW (1.26 )
  dmi.board.asset.tag: Not Available
  dmi.board.name: 429137G
  dmi.board.vendor: LENOVO
  dmi.board.version: Not Available
  dmi.chassis.asset.tag: No Asset Information
  dmi.chassis.type: 10
  dmi.chassis.vendor: LENOVO
  dmi.chassis.version: Not Available
  dmi.modalias: 
dmi:bvnLENOVO:bvr8DET56WW(1.26):bd12/01/2011:svnLENOVO:pn429137G:pvrThinkPadX220:rvnLENOVO:rn429137G:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
  dmi.product.name: 429137G
  dmi.product.version: ThinkPad X220
  dmi.sys.vendor: LENOVO

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

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


  1   2   >