[Bug 2071474] Re: fsck.xfs doesn't call xfs_repair in force mode from systemd unit during the system startup

2024-07-01 Thread Marcin Wilk
** Description changed:

  Ubuntu 20.04.6 LTS
  xfsprogs 5.3.0-1ubuntu2
  
  According to the fsck.xfs(8) man page [1] an administrator can force
  xfs_repair on every boot by adding the "fsck.mode=force" to the kernel
  boot options. But it doesn't work. The culprit is this check in the
  xfs_fsck.sh file [2]. This is one of the checks that is supposed to
  prevent running the fsck.xfs tool in the force mode from the interactive
  session but apparently it also blocks it's execution from the systemd
  unit. According to the systemd-fsck@.service man page [3] a separate
  service is instantiated for each device that is configured for file
  system checking. And that service calls /lib/systemd/systemd-fsck
  (/usr/lib/systemd/systemd-fsck) which is a part of the systemd package.
  This in turn is built from the fsck/fsck.c source [4]. The tool calls
  fsck.xfs with -f if the kernel command line fsck.mode=force is present
  [5][6].
  
  Steps to reproduce:
  1. install Ubuntu Focal with two disks (one for the system, the other for 
test xfs partition)
  2. create partition and xfs file system on the second drive (in my case it is 
/dev/vdb (the disk), /dev/vdb1 (the xfs partition))
  3. create mount point dir (ie, /data) and add appropriate line to the 
/etc/fstab, ie:
  /dev/vdb1 /data xfs defaults 0 2
- 4. sudo mount --all to test the above, next sudo umount /data
+ 4. sudo mount --all to test the above, next: sudo umount /data
  5. break the xfs fs on /dev/vdb1:
  sudo xfs_db -x -c blockget -c "blocktrash -s 512109 -n 1000" /dev/vdb1
  6. verify it's broken:
  sudo mount --all
  7. add the "fsck.mode=force" to the kernel boot option in grub 
(/etc/default/grub):
  GRUB_CMDLINE_LINUX_DEFAULT="console=tty1 console=ttyS0 fsck.mode=force"
  8. sudo update-grub
  9. sudo reboot; # watch console during the startup for messages similar to 
the following:
  
-  Starting File System Check on /dev/vdb1...
+  Starting File System Check on /dev/vdb1...
  [  OK  ] Started File System Check Daemon to report status.
  [  OK  ] Finished File System Check on /dev/vdb1.
-  Mounting /data...
+  Mounting /data...
  [2.592015] XFS (vdb1): Metadata CRC error detected at 
xfs_inobt_read_verify+0x1a/0xc0 [xfs], xfs_inobt block 0x8
  [2.593023] XFS (vdb1): Unmount and run xfs_repair
  [2.593579] XFS (vdb1): First 128 bytes of corrupted metadata buffer:
  [2.594195] : b9 be bd cc 0f 00 00 01 ff ff ff ff ff ff ff ff  

  [2.596159] 0010: 00 00 00 00 00 00 00 08 00 00 00 00 00 00 00 00  

  [2.596929] 0020: 70 ef 5b b8 a3 e5 4e 12 a0 f3 45 c9 0a 20 11 3f  
p.[...N...E.. .?
  [2.597807] 0030: 00 00 00 00 28 a7 30 1d 00 00 00 80 00 00 40 3d  
(.0...@=
  [2.598661] 0040: ff ff ff ff ff ff ff f8 00 00 00 00 00 00 00 00  

  [2.599451] 0050: 00 00 00 00 00 00 00 00 00 c0 ff 07 00 00 00 00  

  [2.600244] 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

  [2.601034] 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

  [2.601877] XFS (vdb1): metadata I/O error in "xfs_trans_read_buf_map" at 
daddr 0x8 len 8 error 74
  [FAILED] Failed to mount /data.
  
  10. comment out lines 61-63 in the /sbin/fsck.xfs:
  
  diff /sbin/fsck.xfs ~/fsck.xfs
  61,63c61,63
  < #if [ -n "$PS1" -o -t 0 ]; then
  < #   FORCE=false
  < #fi
  ---
  > if [ -n "$PS1" -o -t 0 ]; then
  > FORCE=false
  > fi
  
  11. repeat step 9. (reboot). The system will repair /dev/vdb1 and mount
  it automatically:
  
-  Starting File System Check on /dev/vdb1...
+  Starting File System Check on /dev/vdb1...
  [  OK  ] Started File System Check Daemon to report status.
  [  OK  ] Mounted Mount unit for core20, revision 2318.
  [  OK  ] Mounted Mount unit for lxd, revision 24061.
  [  OK  ] Mounted Mount unit for snapd, revision 21759.
  [  OK  ] Finished File System Check on /dev/vdb1.
  [  OK  ] Reached target Mounted snaps.
-  Mounting /data...
+  Mounting /data...
  [  OK  ] Mounted /data.
  
  journalctl proves that xfs_repair run on the disk:
  date; journalctl --no-pager -u systemd-fsck@dev-vdb1.service --since "5 
minutes ago"
  Fri Jun 28 14:37:19 UTC 2024
  -- Logs begin at Fri 2024-06-28 07:53:49 UTC, end at Fri 2024-06-28 14:36:24 
UTC. --
  Jun 28 14:34:12 xfs systemd[1]: systemd-fsck@dev-vdb1.service: Succeeded.
  Jun 28 14:34:12 xfs systemd[1]: Stopped File System Check on /dev/vdb1.
  -- Reboot --
  Jun 28 14:34:28 xfs systemd[1]: Starting File System Check on /dev/vdb1...
  Jun 28 14:34:28 xfs systemd-fsck[564]: Phase 1 - find and verify superblock...
  Jun 28 14:34:28 xfs systemd-fsck[564]: Phase 2 - using internal log
  Jun 28 14:34:28 xfs systemd-fsck[564]: - zero log...
  Jun 28 14:34:28 xfs systemd-fsck[564]: - scan filesystem freespace 
and inode maps...
  Jun 28 14:34:28 xfs 

[Bug 2071474] [NEW] fsck.xfs doesn't call xfs_repair in force mode from systemd unit during the system startup

2024-06-28 Thread Marcin Wilk
Public bug reported:

Ubuntu 20.04.6 LTS
xfsprogs 5.3.0-1ubuntu2

According to the fsck.xfs(8) man page [1] an administrator can force
xfs_repair on every boot by adding the "fsck.mode=force" to the kernel
boot options. But it doesn't work. The culprit is this check in the
xfs_fsck.sh file [2]. This is one of the checks that is supposed to
prevent running the fsck.xfs tool in the force mode from the interactive
session but apparently it also blocks it's execution from the systemd
unit. According to the systemd-fsck@.service man page [3] a separate
service is instantiated for each device that is configured for file
system checking. And that service calls /lib/systemd/systemd-fsck
(/usr/lib/systemd/systemd-fsck) which is a part of the systemd package.
This in turn is built from the fsck/fsck.c source [4]. The tool calls
fsck.xfs with -f if the kernel command line fsck.mode=force is present
[5][6].

Steps to reproduce:
1. install Ubuntu Focal with two disks (one for the system, the other for test 
xfs partition)
2. create partition and xfs file system on the second drive (in my case it is 
/dev/vdb (the disk), /dev/vdb1 (the xfs partition))
3. create mount point dir (ie, /data) and add appropriate line to the 
/etc/fstab, ie:
/dev/vdb1 /data xfs defaults 0 2
4. sudo mount --all to test the above, next sudo umount /data
5. break the xfs fs on /dev/vdb1:
sudo xfs_db -x -c blockget -c "blocktrash -s 512109 -n 1000" /dev/vdb1
6. verify it's broken:
sudo mount --all
7. add the "fsck.mode=force" to the kernel boot option in grub 
(/etc/default/grub):
GRUB_CMDLINE_LINUX_DEFAULT="console=tty1 console=ttyS0 fsck.mode=force"
8. sudo update-grub
9. sudo reboot; # watch console during the startup for messages similar to the 
following:

 Starting File System Check on /dev/vdb1...
[  OK  ] Started File System Check Daemon to report status.
[  OK  ] Finished File System Check on /dev/vdb1.
 Mounting /data...
[2.592015] XFS (vdb1): Metadata CRC error detected at 
xfs_inobt_read_verify+0x1a/0xc0 [xfs], xfs_inobt block 0x8
[2.593023] XFS (vdb1): Unmount and run xfs_repair
[2.593579] XFS (vdb1): First 128 bytes of corrupted metadata buffer:
[2.594195] : b9 be bd cc 0f 00 00 01 ff ff ff ff ff ff ff ff  

[2.596159] 0010: 00 00 00 00 00 00 00 08 00 00 00 00 00 00 00 00  

[2.596929] 0020: 70 ef 5b b8 a3 e5 4e 12 a0 f3 45 c9 0a 20 11 3f  
p.[...N...E.. .?
[2.597807] 0030: 00 00 00 00 28 a7 30 1d 00 00 00 80 00 00 40 3d  
(.0...@=
[2.598661] 0040: ff ff ff ff ff ff ff f8 00 00 00 00 00 00 00 00  

[2.599451] 0050: 00 00 00 00 00 00 00 00 00 c0 ff 07 00 00 00 00  

[2.600244] 0060: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[2.601034] 0070: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  

[2.601877] XFS (vdb1): metadata I/O error in "xfs_trans_read_buf_map" at 
daddr 0x8 len 8 error 74
[FAILED] Failed to mount /data.

10. comment out lines 61-63 in the /sbin/fsck.xfs:

diff /sbin/fsck.xfs ~/fsck.xfs
61,63c61,63
< #if [ -n "$PS1" -o -t 0 ]; then
< # FORCE=false
< #fi
---
> if [ -n "$PS1" -o -t 0 ]; then
>   FORCE=false
> fi

11. repeat step 9. (reboot). The system will repair /dev/vdb1 and mount
it automatically:

 Starting File System Check on /dev/vdb1...
[  OK  ] Started File System Check Daemon to report status.
[  OK  ] Mounted Mount unit for core20, revision 2318.
[  OK  ] Mounted Mount unit for lxd, revision 24061.
[  OK  ] Mounted Mount unit for snapd, revision 21759.
[  OK  ] Finished File System Check on /dev/vdb1.
[  OK  ] Reached target Mounted snaps.
 Mounting /data...
[  OK  ] Mounted /data.

journalctl proves that xfs_repair run on the disk:
date; journalctl --no-pager -u systemd-fsck@dev-vdb1.service --since "5 minutes 
ago"
Fri Jun 28 14:37:19 UTC 2024
-- Logs begin at Fri 2024-06-28 07:53:49 UTC, end at Fri 2024-06-28 14:36:24 
UTC. --
Jun 28 14:34:12 xfs systemd[1]: systemd-fsck@dev-vdb1.service: Succeeded.
Jun 28 14:34:12 xfs systemd[1]: Stopped File System Check on /dev/vdb1.
-- Reboot --
Jun 28 14:34:28 xfs systemd[1]: Starting File System Check on /dev/vdb1...
Jun 28 14:34:28 xfs systemd-fsck[564]: Phase 1 - find and verify superblock...
Jun 28 14:34:28 xfs systemd-fsck[564]: Phase 2 - using internal log
Jun 28 14:34:28 xfs systemd-fsck[564]: - zero log...
Jun 28 14:34:28 xfs systemd-fsck[564]: - scan filesystem freespace and 
inode maps...
Jun 28 14:34:28 xfs systemd-fsck[564]: Metadata CRC error detected at 
0x564c48e69d0d, xfs_bnobt block 0x20/0x1000
Jun 28 14:34:28 xfs systemd-fsck[564]: btree block 0/4 is suspect, error -74
.
Jun 28 14:34:28 xfs systemd-fsck[564]: UUID mismatch on inode 191
Jun 28 14:34:28 xfs systemd-fsck[564]: cleared inode 191
Jun 28 14:34:28 xfs systemd-fsck[564]: - agno = 1
Jun 28 14:34:28 xfs systemd-fsck[564]: - 

[Bug 1884232] Re: touchpad and touchscreen doesn't work at all on ACER Spin 5 (SP513-54N)

2022-06-02 Thread wilk
The pci=nocrs option is working again with kernel 5.18. It's still
needed to get the touchpad working.

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

Title:
  touchpad and touchscreen doesn't work at all on ACER Spin 5
  (SP513-54N)

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


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

[Bug 1973736] Re: Touchpad not working in Acer Spin 5, pci=nocrs freezes at boot

2022-05-24 Thread wilk
*** This bug is a duplicate of bug 1884232 ***
https://bugs.launchpad.net/bugs/1884232

** This bug has been marked a duplicate of bug 1884232
   touchpad and touchscreen doesn't work at all on ACER Spin 5 (SP513-54N)

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

Title:
  Touchpad not working in Acer Spin 5, pci=nocrs freezes at boot

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


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

[Bug 1973736] [NEW] Touchpad not working in Acer Spin 5, pci=nocrs freezes at boot

2022-05-17 Thread wilk
Public bug reported:

After upgrade to 22.04, touchpad in Acer Spin 5 no longer works.

Up to 21.10, and kernels 5.13, adding pci=nocrs to boot options was needed to 
enable the touchpad and touchscreen. With the upgrade to 22.04, there is still 
no touchpad or touchscreen without pci=nocrs but now this boot option prevents 
booting with the error message:
xhci_hcd :00:14.0: can't setup: -12
xhci_hcd :00:14.0: init :00:14.0 fail, -12

Rolling back to kernel 5.13, the pci=nocrs boot parameter restores the
touchpad and touchscreen.

ProblemType: Bug
DistroRelease: Ubuntu 22.04
Package: linux-image-5.15.0-30-generic 5.15.0-30.31
ProcVersionSignature: Ubuntu 5.15.0-30.31-generic 5.15.30
Uname: Linux 5.15.0-30-generic x86_64
ApportVersion: 2.20.11-0ubuntu82
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  wilk   1629 F pulseaudio
CasperMD5CheckResult: pass
CurrentDesktop: GNOME
Date: Tue May 17 11:22:40 2022
InstallationDate: Installed on 2021-04-20 (391 days ago)
InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Release amd64 (20210420)
MachineType: Acer Spin SP513-54N
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.15.0-30-generic 
root=UUID=aae60698-90a7-4372-8c49-71adbe9419fe ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.15.0-30-generic N/A
 linux-backports-modules-5.15.0-30-generic  N/A
 linux-firmware 20220329.git681281e4-0ubuntu3
SourcePackage: linux
UpgradeStatus: Upgraded to jammy on 2022-05-15 (2 days ago)
dmi.bios.date: 07/17/2020
dmi.bios.release: 1.5
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: V1.05
dmi.board.name: Caboom_IL
dmi.board.vendor: IL
dmi.board.version: V1.05
dmi.chassis.type: 31
dmi.chassis.vendor: Acer
dmi.chassis.version: V1.05
dmi.ec.firmware.release: 1.2
dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.05:bd07/17/2020:br1.5:efr1.2:svnAcer:pnSpinSP513-54N:pvrV1.05:rvnIL:rnCaboom_IL:rvrV1.05:cvnAcer:ct31:cvrV1.05:sku:
dmi.product.family: Spin 5
dmi.product.name: Spin SP513-54N
dmi.product.sku: 
dmi.product.version: V1.05
dmi.sys.vendor: Acer

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


** Tags: amd64 apport-bug jammy wayland-session

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

Title:
  Touchpad not working in Acer Spin 5, pci=nocrs freezes at boot

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


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

[Bug 623438] Re: Font size not correct in merged sandwich PDF

2022-04-22 Thread Jakub Wilk
** Summary changed:

- Font size not correct in merged sandvich PDF
+ Font size not correct in merged sandwich PDF

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

Title:
  Font size not correct in merged sandwich PDF

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


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

[Bug 435108] Re: Package is broken, does not work with Python version 2.6

2022-04-22 Thread Jakub Wilk
** Summary changed:

- Pakcage is broken, does not work with Python version 2.6
+ Package is broken, does not work with Python version 2.6

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

Title:
  Package is broken, does not work with Python version 2.6

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-plwm/+bug/435108/+subscriptions


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

[Bug 1948645] Re: Handbrake 1.4.1+ds1-1 segfaults at startup

2021-10-26 Thread wilk
After further testing:

apport reports the following error:
Segfault happened at: 0x7fe3bdbc310f:   mov%rax,0x28(%rsp)
PC (0x7fe3bdbc310f) ok
source "%rax" ok
destination "0x28(%rsp)" (0x7fff38053ff8) not located in a known VMA region 
(needed writable region)!
Stack memory exhausted (SP below stack segment)

There is no problem when running handbrake in a X11 session, only i
nWayland does it crash.

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

Title:
  Handbrake 1.4.1+ds1-1 segfaults at startup

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


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

[Bug 1948645] [NEW] Handbrake 1.4.1+ds1-1 segfaults at startup

2021-10-25 Thread wilk
Public bug reported:

After upgrading to Impish Indri, Handbrake crashes at startup, dumping
core before launching its window.

Ubuntu 21.10
Handbrake 1.4.1+ds1-1

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

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

Title:
  Handbrake 1.4.1+ds1-1 segfaults at startup

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


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

[Bug 1927862] [NEW] arduino ide crashes at startup

2021-05-09 Thread wilk
Public bug reported:

I'm running arduino 2:1.8.13+dfsg1-2 from the hippo repository. At
startup, arduino crashed with:

Picked up JAVA_TOOL_OPTIONS: 
java.lang.UnsatisfiedLinkError: 
/usr/lib/x86_64-linux-gnu/liblistSerialsj.so.1.4.0: 
/usr/lib/x86_64-linux-gnu/liblistSerialsj.so.1.4.0: undefined symbol: 
sp_get_port_usb_vid_pid
at java.base/java.lang.ClassLoader$NativeLibrary.load0(Native Method)
at 
java.base/java.lang.ClassLoader$NativeLibrary.load(ClassLoader.java:2442)
at 
java.base/java.lang.ClassLoader$NativeLibrary.loadLibrary(ClassLoader.java:2498)
at java.base/java.lang.ClassLoader.loadLibrary0(ClassLoader.java:2694)
at java.base/java.lang.ClassLoader.loadLibrary(ClassLoader.java:2659)
at java.base/java.lang.Runtime.loadLibrary0(Runtime.java:830)
at java.base/java.lang.System.loadLibrary(System.java:1873)
at processing.app.Platform.(Platform.java:144)
at java.base/java.lang.Class.forName0(Native Method)
at java.base/java.lang.Class.forName(Class.java:315)
at processing.app.BaseNoGui.initPlatform(BaseNoGui.java:514)
at processing.app.Base.(Base.java:201)
at processing.app.Base.main(Base.java:141)

I installed the arduino
https://downloads.arduino.cc/arduino-1.8.13-linux64.tar.xz, which
contains its own version of liblistSerialsj. This arduino executable is
running fine.

ProblemType: Bug
DistroRelease: Ubuntu 21.04
Package: arduino 2:1.8.13+dfsg1-2
ProcVersionSignature: Ubuntu 5.11.0-16.17-generic 5.11.12
Uname: Linux 5.11.0-16-generic x86_64
ApportVersion: 2.20.11-0ubuntu65
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Sun May  9 17:44:01 2021
InstallationDate: Installed on 2021-04-20 (19 days ago)
InstallationMedia: Ubuntu 21.04 "Hirsute Hippo" - Release amd64 (20210420)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: arduino
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug hirsute wayland-session

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

Title:
  arduino ide crashes at startup

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

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

[Bug 1906691] Re: Laptop wakes up immediatly from suspend to RAM

2020-12-15 Thread wilk
Thanks, the problem is fixed in the mainline kernel. Will it be properly
integrated in the official repositories for 20.04 ?

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

Title:
  Laptop wakes up immediatly from suspend to RAM

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

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

[Bug 1906691] Re: Laptop wakes up immediatly from suspend to RAM

2020-12-13 Thread wilk
Also upgrading to 5.4.0-58 didn't fix it.

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

Title:
  Laptop wakes up immediatly from suspend to RAM

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

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

[Bug 1906691] Re: Laptop wakes up immediatly from suspend to RAM

2020-12-11 Thread wilk
Just tried it, the problem remains even with these two modules unloaded.

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

Title:
  Laptop wakes up immediatly from suspend to RAM

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

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

[Bug 1906691] Re: Laptop wakes up immediatly from suspend to RAM

2020-12-09 Thread wilk
Suspend to ram still works with kernel 5.4.0-54-generic #60-Ubuntu SMP.

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

Title:
  Laptop wakes up immediatly from suspend to RAM

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

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

[Bug 1906691] [NEW] Laptop wakes up immediatly from suspend to RAM

2020-12-03 Thread wilk
Public bug reported:

Since last kernel update to (5.4.0-56-generic #62-Ubuntu SMP), my laptop
wakes up as soon as it reaches the suspend to RAM S3 state.

I'm running ubuntu 20.04 on a Microsoft Surface Pro (the 2013 version).

The only relevant error message I found is :

ACPI Error: Aborting method \_SB.PCI0.SAT0.SPT0._GTF due to previous
error (AE_NOT_FOUND) (20190816/psparse-529)

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.4.0-56-generic 5.4.0-56.62
ProcVersionSignature: Ubuntu 5.4.0-56.62-generic 5.4.73
Uname: Linux 5.4.0-56-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.13
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  wilk   1801 F pulseaudio
CasperMD5CheckResult: skip
CurrentDesktop: GNOME
Date: Thu Dec  3 17:35:36 2020
HibernationDevice: RESUME=UUID=adb12a68-9928-4181-b4e2-487010d3c501
InstallationDate: Installed on 2017-10-22 (1138 days ago)
InstallationMedia: Ubuntu 17.10 "Artful Aardvark" - Release amd64 (20171018)
MachineType: Microsoft Corporation Surface with Windows 8 Pro
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
ProcFB: 0 i915drmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.4.0-56-generic 
root=UUID=919f00b8-5010-46e1-b2f9-c129e17d5312 ro video=VGA-1:1366x768@60 quiet 
splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-5.4.0-56-generic N/A
 linux-backports-modules-5.4.0-56-generic  N/A
 linux-firmware1.187.4
SourcePackage: linux
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/08/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.00.0250
dmi.board.asset.tag: 0
dmi.board.name: Surface with Windows 8 Pro
dmi.board.vendor: Microsoft Corporation
dmi.board.version: 1
dmi.chassis.asset.tag: 0
dmi.chassis.type: 17
dmi.chassis.vendor: Microsoft Corporation
dmi.chassis.version: 1
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.00.0250:bd01/08/2013:svnMicrosoftCorporation:pnSurfacewithWindows8Pro:pvr1:rvnMicrosoftCorporation:rnSurfacewithWindows8Pro:rvr1:cvnMicrosoftCorporation:ct17:cvr1:
dmi.product.family: Surface
dmi.product.name: Surface with Windows 8 Pro
dmi.product.sku: Surface_PRO_1
dmi.product.version: 1
dmi.sys.vendor: Microsoft Corporation

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


** Tags: amd64 apport-bug focal wayland-session

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

Title:
  Laptop wakes up immediatly from suspend to RAM

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

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

[Bug 1534946] Re: pcimodules: broken; 'kmod' depmod doesn't generate a modules.pcimap

2020-04-15 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #599335
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599335

** Also affects: pciutils (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599335
   Importance: Unknown
   Status: Unknown

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

Title:
  pcimodules: broken; 'kmod' depmod doesn't generate a modules.pcimap

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

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

[Bug 829051] Re: paprefs cannot configure pulseaudio network settings

2020-04-13 Thread wilk
sudo ln -s /usr/lib/pulse-13.99.1 /usr/lib/pulse-13.99 works though.

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

Title:
  paprefs cannot configure pulseaudio network settings

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

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

[Bug 829051] Re: paprefs cannot configure pulseaudio network settings

2020-04-13 Thread wilk
The problem seems to be back in Ubuntu 20.04. And the trick in 
https://bugs.launchpad.net/ubuntu/+source/paprefs/+bug/829051/comments/47 
doesn't fix it: echoing the command (minus the ln -s part) only gives
"usr/lib/pulse-13.99.1 /usr/lib/pulse-13.99.1"

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

Title:
  paprefs cannot configure pulseaudio network settings

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

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

[Bug 1870846] [NEW] WebKitCache grows very large

2020-04-04 Thread wilk
Public bug reported:

On my system (Ubuntu 19.10), the ~/.cache/epiphany/WebKitCache grows
regularly up to 1 Go if I don't purge it manually. There should be a
setting to limit its size to something more reasonable.

** Affects: epiphany-browser (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  WebKitCache grows very large

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/epiphany-browser/+bug/1870846/+subscriptions

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

[Bug 1868116] Re: QEMU monitor no longer works

2020-03-28 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #954266
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=954266

** Also affects: qemu (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=954266
   Importance: Unknown
   Status: Unknown

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

Title:
  QEMU monitor no longer works

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

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

[Bug 1685804] Re: dpkg-source is contradicting itself over include-removal

2018-11-05 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #913012
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913012

** Also affects: dpkg (Debian) via
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913012
   Importance: Unknown
   Status: Unknown

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

Title:
  dpkg-source is contradicting itself over include-removal

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

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

[Bug 1797369] [NEW] package linux-modules-extra-4.15.0-36-generic (not installed) failed to install/upgrade: unable to open '/lib/modules/4.15.0-36-generic/kernel/net/bluetooth/bluetooth_6lowpan.ko.dp

2018-10-11 Thread Jakob Wilk
Public bug reported:

happened before with libnvidia and libreoffice as well, packaes manually
removed from status helped temporarily

ProblemType: Package
DistroRelease: Ubuntu 18.04
Package: linux-modules-extra-4.15.0-36-generic (not installed)
ProcVersionSignature: Ubuntu 4.15.0-34.37-generic 4.15.18
Uname: Linux 4.15.0-34-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.4
Architecture: amd64
Date: Thu Oct 11 14:29:03 2018
DuplicateSignature:
 package:linux-modules-extra-4.15.0-36-generic:(not installed)
 Unpacking linux-modules-extra-4.15.0-36-generic (4.15.0-36.39) ...
 dpkg: error processing archive 
/tmp/apt-dpkg-install-1kn4XQ/2-linux-modules-extra-4.15.0-36-generic_4.15.0-36.39_amd64.deb
 (--unpack):
  unable to open 
'/lib/modules/4.15.0-36-generic/kernel/net/bluetooth/bluetooth_6lowpan.ko.dpkg-new':
 Operation not permitted
ErrorMessage: unable to open 
'/lib/modules/4.15.0-36-generic/kernel/net/bluetooth/bluetooth_6lowpan.ko.dpkg-new':
 Operation not permitted
InstallationDate: Installed on 2018-09-10 (30 days ago)
InstallationMedia: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
IwConfig:
 enp0s31f6  no wireless extensions.
 
 lono wireless extensions.
MachineType: FUJITSU ESPRIMO P957
ProcFB: 0 nouveaufb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.15.0-34-generic 
root=UUID=04bd5b82-6066-4b72-8f40-b307ecf4391e ro quiet splash vt.handoff=1
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
Python3Details: /usr/bin/python3.6, Python 3.6.6, python3-minimal, 
3.6.5-3ubuntu1
PythonDetails: /usr/bin/python2.7, Python 2.7.15rc1, python-minimal, 
2.7.15~rc1-1
RelatedPackageVersions: grub-pc 2.02-2ubuntu8.4
RfKill:
 
SourcePackage: linux
Title: package linux-modules-extra-4.15.0-36-generic (not installed) failed to 
install/upgrade: unable to open 
'/lib/modules/4.15.0-36-generic/kernel/net/bluetooth/bluetooth_6lowpan.ko.dpkg-new':
 Operation not permitted
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/11/2018
dmi.bios.vendor: FUJITSU // American Megatrends Inc.
dmi.bios.version: V5.0.0.12 R1.18.0 for D3502-A1x
dmi.board.name: D3502-A1
dmi.board.vendor: FUJITSU
dmi.board.version: S26361-D3502-A1
dmi.chassis.type: 3
dmi.chassis.vendor: FUJITSU
dmi.modalias: 
dmi:bvnFUJITSU//AmericanMegatrendsInc.:bvrV5.0.0.12R1.18.0forD3502-A1x:bd06/11/2018:svnFUJITSU:pnESPRIMOP957:pvr:rvnFUJITSU:rnD3502-A1:rvrS26361-D3502-A1:cvnFUJITSU:ct3:cvr:
dmi.product.family: ESPRIMO-FTS
dmi.product.name: ESPRIMO P957
dmi.sys.vendor: FUJITSU

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


** Tags: amd64 apport-package bionic

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

Title:
  package linux-modules-extra-4.15.0-36-generic (not installed) failed
  to install/upgrade: unable to open
  '/lib/modules/4.15.0-36-generic/kernel/net/bluetooth/bluetooth_6lowpan.ko
  .dpkg-new': Operation not permitted

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

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

[Bug 1670474] [NEW] package libgs9:amd64 9.18~dfsg~0-0ubuntu2.3 failed to install/upgrade: package is in a very bad inconsistent state; you should reinstall it before attempting configuration

2017-03-06 Thread wilk
Public bug reported:

none

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libgs9:amd64 9.18~dfsg~0-0ubuntu2.3
ProcVersionSignature: Ubuntu 4.4.0-64.85-generic 4.4.44
Uname: Linux 4.4.0-64-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Mon Mar  6 13:27:51 2017
DuplicateSignature:
 package:libgs9:amd64:9.18~dfsg~0-0ubuntu2.3
 Setting up libtiff5:amd64 (4.0.6-1ubuntu0.1) ...
 dpkg: error processing package libgs9:amd64 (--configure):
  package is in a very bad inconsistent state; you should
ErrorMessage: package is in a very bad inconsistent state; you should  
reinstall it before attempting configuration
InstallationDate: Installed on 2016-08-08 (210 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
Lpstat: Error: command ['lpstat', '-v'] failed with exit code 1: lpstat: No 
destinations added.
MachineType: ASUSTeK COMPUTER INC. S500CA
Papersize: letter
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-64-generic.efi.signed 
root=UUID=4775b514-8251-4350-a2ef-f4703174adbc ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SourcePackage: ghostscript
Title: package libgs9:amd64 9.18~dfsg~0-0ubuntu2.3 failed to install/upgrade: 
package is in a very bad inconsistent state; you should  reinstall it before 
attempting configuration
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 02/05/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: S500CA.204
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: S500CA
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: 1.0
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK COMPUTER INC.
dmi.chassis.version: 1.0
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrS500CA.204:bd02/05/2013:svnASUSTeKCOMPUTERINC.:pnS500CA:pvr1.0:rvnASUSTeKCOMPUTERINC.:rnS500CA:rvr1.0:cvnASUSTeKCOMPUTERINC.:ct10:cvr1.0:
dmi.product.name: S500CA
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK COMPUTER INC.

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


** Tags: amd64 apport-package need-duplicate-check third-party-packages xenial

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

Title:
  package libgs9:amd64 9.18~dfsg~0-0ubuntu2.3 failed to install/upgrade:
  package is in a very bad inconsistent state; you should  reinstall it
  before attempting configuration

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

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


[Bug 1626572] Re: Emacs doesn't properly redraw its window when maximized

2016-09-27 Thread wilk
Indeed the next builds fixed this problem.

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

Title:
  Emacs doesn't properly redraw its window when maximized

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs-snapshot/+bug/1626572/+subscriptions

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


Re: [Bug 1626572] Re: Emacs doesn't properly redraw its window when maximized

2016-09-27 Thread wilk
mtvoid <1626...@bugs.launchpad.net> writes:

> Hi Julien
> The Cairo support was only just added in today's build at my
> suggestion, for testing. I expect it to be reverted in the next daily
> build though. I too am experiencing severe rendering issues with it,
> so the feature is as of now still very experimental.

The next builds fixed this problem indeed.

Julien.

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

Title:
  Emacs doesn't properly redraw its window when maximized

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs-snapshot/+bug/1626572/+subscriptions

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


[Bug 1626572] [NEW] Emacs doesn't properly redraw its window when maximized

2016-09-22 Thread wilk
Public bug reported:

As described upstream in
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=24310, emacs -mm doesn't
redraw the "window" (as in the window manager) the way it should: the
modeline is scrambled, and half the window is missing. emacs -fs is
working though. I experienced it with emacs -Q in gnome-shell. Upstream
advises to compile Emacs without Cairo support.

Julien.

** Affects: emacs-snapshot (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Emacs doesn't properly redraw its window when maximized

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs-snapshot/+bug/1626572/+subscriptions

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


[Bug 1594830] Re: Ocrodjvu's dependencies not met in apt-get

2016-06-21 Thread Jakub Wilk
** Summary changed:

- Ocrodvju's dependencies not met in apt-get
+ Ocrodjvu's dependencies not met in apt-get

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

Title:
  Ocrodjvu's dependencies not met in apt-get

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

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


[Bug 1575751] [NEW] is undefined

2016-04-27 Thread wilk
Public bug reported:

As stated in a very old bug report
(https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/493766) Emacs
complains that  used for Compose is not defined. This key is
however working everywhere else and even in emacs -nw.

Starting emacs with export XMODIFIERS="";emacs-snapshot fixes the
problem.

** Affects: emacs-snapshot (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
   is undefined

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/emacs-snapshot/+bug/1575751/+subscriptions

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


[Bug 1574608] Re: $MPDCONF not defined in mpd.service

2016-04-26 Thread wilk
I see it now, I was confused because of the $MPDCONF in mpd.service. On
a related note, I couldn't find a configure option to compile-in the
conf file. Did you patch the source ?

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

Title:
  $MPDCONF not defined in mpd.service

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

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


[Bug 1574608] [NEW] $MPDCONF not defined in mpd.service

2016-04-25 Thread wilk
Public bug reported:

In /lib/systemd/system/mpd.service used by service, mpd is called with the 
$MPDCONF environment variable, that is not defined. There is only the following 
line commented out in /etc/default/mpd:
MPDCONF=/etc/mpd.conf

For some reason, /usr/bin/mpd launches successfully (maybe there is a
default conf file path hardcoded) but I had to define this variable (by
uncommenting its line ine /etc/default/mpd) to get it to work with a
custom mpd build.

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

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

Title:
  $MPDCONF not defined in mpd.service

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

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


[Bug 1449438] Re: Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

2015-11-07 Thread wilk
@Dirk I can try with the bluetooth system in my car, that's TV only one
I have. This a2dp sink you're talking about, where do I set it up ?

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

Title:
  Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

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

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


Re: [Bug 1449438] Re: Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

2015-11-06 Thread wilk
Dirk Schmidtke  writes:

> Install the recently released stable Kernel 4.3 from Ubuntu mainline
> kernel repository, that solved wlan for me. 

Same thing here, except there is a bug preventing WPA authentication
from working. WPA2 works though, and I've had confirmation from one on
the developpers upstream that they're working on a fix soon to be
released.

Julien.

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

Title:
  Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

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

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


[Bug 1501176] Re: Off-by-one in decode

2015-10-12 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #801584
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801584

** Also affects: libb64 (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801584
   Importance: Unknown
   Status: Unknown

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

Title:
  Off-by-one in decode

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

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


[Bug 1449438] Re: Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

2015-05-01 Thread wilk
@penalvch: I'm not sure I can upgrade the BIOS, I only have Ubuntu
installed on the machine and all the instructions I found rely on
running some Asus application in Windows.

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

Title:
  Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

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

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


[Bug 1449438] Re: Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

2015-04-29 Thread wilk
** Tags added: kernel-bug-reported-upstream

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

Title:
  Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

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

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


[Bug 1449438] [NEW] Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

2015-04-28 Thread wilk
Public bug reported:

I've been running Ubuntu 14.10 on a Microsoft Surface Pro. After some
initial problems (see
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1165938) (fixed by
kernel updates I guess) the wifi was working fine. Since the upgrade to
15.04 the problems are back: I can connect to a wifi network, the
connection is working for a few seconds but drops right after. I
attached the relevant entries in dmes.log.

I tried installing the marvell firmware from git://git.marvell.com
/mwifiex-firmware.git, that didn't change anything. I also tried the
mainline kernel from http://kernel.ubuntu.com/~kernel-
ppa/mainline/v4.1-rc1-vivid/: the connection is again working for a few
seconds but the whole system hangs afterwards.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: linux-image-3.19.0-15-generic 3.19.0-15.15
ProcVersionSignature: Ubuntu 3.19.0-15.15-generic 3.19.3
Uname: Linux 3.19.0-15-generic x86_64
ApportVersion: 2.17.2-0ubuntu1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  wilk   1792 F pulseaudio
CurrentDesktop: Unity
Date: Tue Apr 28 10:57:42 2015
HibernationDevice: RESUME=UUID=adb12a68-9928-4181-b4e2-487010d3c501
InstallationDate: Installed on 2014-02-19 (432 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
MachineType: Microsoft Corporation Surface with Windows 8 Pro
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-15-generic.efi.signed 
root=UUID=919f00b8-5010-46e1-b2f9-c129e17d5312 ro quiet splash vt.handoff=7
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
SourcePackage: linux
UpgradeStatus: Upgraded to vivid on 2015-04-27 (0 days ago)
dmi.bios.date: 01/08/2013
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.00.0250
dmi.board.asset.tag: 0
dmi.board.name: Surface with Windows 8 Pro
dmi.board.vendor: Microsoft Corporation
dmi.board.version: 1
dmi.chassis.asset.tag: 0
dmi.chassis.type: 17
dmi.chassis.vendor: Microsoft Corporation
dmi.chassis.version: 1
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.00.0250:bd01/08/2013:svnMicrosoftCorporation:pnSurfacewithWindows8Pro:pvr1:rvnMicrosoftCorporation:rnSurfacewithWindows8Pro:rvr1:cvnMicrosoftCorporation:ct17:cvr1:
dmi.product.name: Surface with Windows 8 Pro
dmi.product.version: 1
dmi.sys.vendor: Microsoft Corporation

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


** Tags: amd64 apport-bug vivid

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

Title:
  Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

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

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


[Bug 1449438] Re: Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

2015-04-28 Thread wilk
** Attachment added: dmesg messages about the wifi chip (usb 1-3)
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1449438/+attachment/4386419/+files/dmesg.log

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

Title:
  Marvell 88W8797 wifi (module mwifiex) does not work on Surface Pro

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

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


[Bug 1089628] Re: Print first pdf file works, second pdf file results in garbage output

2015-02-23 Thread wilk
The same problem started to happen to me on Trusty then Utopic on a
LaserJet P2055d

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

Title:
  Print first pdf file works, second pdf file results in garbage output

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

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


[Bug 1423847] [NEW] Evince print blank pages for landscape pdfs when auto rotate and center is chosen

2015-02-20 Thread wilk
Public bug reported:

The title says it all. The document is printed if the auto-rotate and
center is unchecked but of course that's not a solution since the image
is cropped.

I also tried printing to a pdf file, the resulting pdf seems correct but
fails to print just the same.

Printing from okular works fine although for some reason dual sided
printing is greyed out (it used to work fine with evince before on my
Laserjet 2055d).

The problem seems known upstream (see
https://bugzilla.gnome.org/show_bug.cgi?id=739723)

I added a file exhibiting the problem.

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: evince 3.14.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.16.0-31.41-generic 3.16.7-ckt5
Uname: Linux 3.16.0-31-generic x86_64
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: amd64
CurrentDesktop: GNOME
Date: Fri Feb 20 10:53:30 2015
InstallationDate: Installed on 2014-01-15 (400 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
ProcEnviron:
 LANGUAGE=fr_FR:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=fr_FR.UTF-8
 SHELL=/bin/bash
SourcePackage: evince
UpgradeStatus: Upgraded to utopic on 2015-02-15 (4 days ago)

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


** Tags: amd64 apport-bug gnome3-ppa third-party-packages utopic

** Attachment added: precipites-eleves-seul.pdf
   
https://bugs.launchpad.net/bugs/1423847/+attachment/4323156/+files/precipites-eleves-seul.pdf

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

Title:
  Evince print blank pages for landscape pdfs when auto rotate and
  center is chosen

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

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


[Bug 1389135] Re: dpkg / dpkg-deb segfault -- possible format string bug/vuln?

2014-11-07 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #768485
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768485

** Also affects: dpkg (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=768485
   Importance: Unknown
   Status: Unknown

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

Title:
  dpkg / dpkg-deb segfault -- possible format string bug/vuln?

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

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


[Bug 1300722] Re: hud-service is eating up 100% of one of my CPUs in a poll loop

2014-09-18 Thread wilk
I've noticed it when  running emacs-snapshot. emacs is very responsive
at first but after a while (one hour more or less) it's unbearably slow.
Moving the focus from one window to another takes a few seconds. When
that happens, both emacs and hud-service cpu usage go up to 100% (I have
a dual-core CPU).

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

Title:
  hud-service is eating up 100% of one of my CPUs in a poll loop

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

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


[Bug 1348899] Re: taskwarrior does not respect EDITOR when using task edit

2014-08-01 Thread Jakub Wilk
I don't believe anything has changed in this respect between 2.2.0-3 and 
2.3.0+dfsg-2.
The code for the latter version looks like this:

  // Determine correct editor: .taskrc:editor  $VISUAL  $EDITOR  vi
  std::string editor = context.config.get (editor);
  char* peditor = getenv (VISUAL);
  if (editor ==   peditor) editor = std::string (peditor);
  peditor = getenv (EDITOR);
  if (editor ==   peditor) editor = std::string (peditor);
  if (editor == ) editor = vi;

Perhaps you have editor configured in your taskrc? Or have VISUAL set in
your environment?

(In 2.3.0+dfsg-3, the fallback editor was changed from vi to
editor.)

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

Title:
  taskwarrior does not respect EDITOR when using task edit

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

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


[Bug 1348899] Re: taskwarrior does not respect EDITOR when using task edit

2014-07-26 Thread Jakub Wilk
I can't reproduce it here:

$ apt-cache policy task
task:
  Installed: 2.2.0-3
  Candidate: 2.2.0-3
  Version table:
 *** 2.2.0-3 0
500 http://cz.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages
100 /var/lib/dpkg/status

$ task add moo
Created task 1.

$ EDITOR=cowsay task 1 edit
Launching 'cowsay task.718.1.task' now...
 _
 task.718.1.task 
 -
\   ^__^
 \  (oo)\___
(__)\   )\/\
||w |
|| ||
Editing complete.
No edits were detected.

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

Title:
  taskwarrior does not respect EDITOR when using task edit

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

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


[Bug 1319457] Re: usb headset causes retire_playback_urb ... callbacks suppressed spam in dmesg

2014-07-11 Thread Paweł Wilk
Installing kernel 3.13.0-31.55 has fixed this issue in my case!

CPU: AMD Phenom 9650 Quad-Core

Sound device: i-tec ( C-Media Electronics, Inc. CM106 Like Sound Device )
Sound device chip: C-Media CM6206

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

Title:
  usb headset causes retire_playback_urb ... callbacks suppressed spam
  in dmesg

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

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


[Bug 1319457] Re: usb headset causes retire_playback_urb ... callbacks suppressed spam in dmesg

2014-07-11 Thread Paweł Wilk
However:

Sound card is eating about 5% of one CPU core:

Line from top:

 93 root -51   0   0  0  0 S   4,6  0,0   2:44.19
irq/16-

Fragment of /proc/interrupts

Is it normal for USB sound devices to generate such load?

   CPU0   CPU1   CPU2   CPU3   
  0:193632  11469 650551   IO-APIC-edge  timer
  1:  0  0  1  1   IO-APIC-edge  i8042
  7:  1  0  0  0   IO-APIC-edge
  8:  0  0  0  0   IO-APIC-edge  rtc0
  9:  0  0  0  0   IO-APIC-fasteoi   acpi
 12:  1  0  0  4   IO-APIC-edge  i8042
 14:  0  1 49   4226   IO-APIC-edge  pata_amd
 15:  0  0  0  0   IO-APIC-edge  pata_amd
 16:4326115  10821   8863214   IO-APIC-fasteoi   , 
# btw, what comma does here instead of name?
 17:  0  0  0  0   IO-APIC-fasteoi   eth0

The IRQ16 stops using CPU if USB sound card is disconnected. The card is
connected to USB 3.0 PCI card identified as USB controller: Renesas
Technology Corp. uPD720202 USB 3.0 Host Controller.

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

Title:
  usb headset causes retire_playback_urb ... callbacks suppressed spam
  in dmesg

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

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


[Bug 1319457] Re: usb headset causes retire_playback_urb ... callbacks suppressed spam in dmesg

2014-07-11 Thread Paweł Wilk
After plugging the device into USB 2.0 socket (nVidia chip) syslog
messages re-appeared:

 [  191.028275] retire_capture_urb: 29 callbacks suppressed
[  214.789697] retire_capture_urb: 2 callbacks suppressed
[  249.805552] retire_capture_urb: 11 callbacks suppressed
[  254.804116] retire_capture_urb: 21 callbacks suppressed
[  269.988701] retire_capture_urb: 3 callbacks suppressed
[  316.323057] retire_capture_urb: 11 callbacks suppressed
[  328.135311] retire_capture_urb: 11 callbacks suppressed
[  338.685139] retire_capture_urb: 15 callbacks suppressed

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

Title:
  usb headset causes retire_playback_urb ... callbacks suppressed spam
  in dmesg

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

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


[Bug 1319457] Re: usb headset causes retire_playback_urb ... callbacks suppressed spam in dmesg

2014-07-11 Thread Paweł Wilk
But they've stopped appearing with such a frequency.

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

Title:
  usb headset causes retire_playback_urb ... callbacks suppressed spam
  in dmesg

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

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


[Bug 1319457] Re: usb headset causes retire_playback_urb ... callbacks suppressed spam in dmesg

2014-07-11 Thread Paweł Wilk
The patch is working, after re-plugging it to previous USB messages
stopped appearing.

I think I know why it is consuming CPU. Pulseaudio is constantly
listening from the plugged-in line input; it consumes even more CPU
cycles.

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

Title:
  usb headset causes retire_playback_urb ... callbacks suppressed spam
  in dmesg

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

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


[Bug 1300892] Re: Slow focus switching in Compiz - affects Unity Dash UX

2014-07-02 Thread Paweł Wilk
** Also affects: compiz
   Importance: Undecided
   Status: New

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

Title:
  Slow focus switching in Compiz - affects Unity Dash UX

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

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


[Bug 1300892] Re: Slow focus switching in Compiz - affects Unity Dash UX

2014-07-02 Thread Paweł Wilk
Same problem here.

Video Card: nVidia GeForce 8200 (same bug with any driver)
CPU: AMD Phenom (4-core)
kernel:  3.13.0-30-generic #54-Ubuntu SMP

Disabling Unity helps.

** Also affects: ubuntu-unity-daily-build (Ubuntu)
   Importance: Undecided
   Status: New

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

** No longer affects: compiz

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

Title:
  Slow focus switching in Compiz - affects Unity Dash UX

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

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


[Bug 1181902] Re: Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze under certain conditions

2014-06-01 Thread Jakub Wilk
“random pattern tiled across the whole screen” sounds very much like this:
https://bugs.freedesktop.org/show_bug.cgi?id=61321


** Bug watch added: freedesktop.org Bugzilla #61321
   https://bugs.freedesktop.org/show_bug.cgi?id=61321

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

Title:
  Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze
  under certain conditions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1181902/+subscriptions

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

[Bug 1293268] Re: taskwarrior does not work in Lubuntu

2014-03-18 Thread Jakub Wilk
** Changed in: task (Ubuntu)
   Status: New = Invalid

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

Title:
  taskwarrior does not work in Lubuntu

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

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


[Bug 1293268] Re: taskwarrior does not work in Lubuntu

2014-03-17 Thread Jakub Wilk
Please make sure that you don't have an unrelated task binary
installed somewhere in your PATH (e.g. in /usr/local), and that you
don't have a local alias for the task command.

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

Title:
  taskwarrior does not work in Lubuntu

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

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


[Bug 1165938] Re: 1286:2044 [Microsoft Surface Pro] Marvell 88W8797 wifi does not work

2014-03-14 Thread wilk
The problem reoccured. Attached is the output from ubuntu-bug.

** Attachment added: output from ubuntu-bug on gpg
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1165938/+attachment/4024021/+files/bug-report-gpg

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

Title:
  1286:2044 [Microsoft Surface Pro] Marvell 88W8797  wifi does not work

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

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


[Bug 1165938] Re: 1286:2044 [Microsoft Surface Pro] Marvell 88W8797 wifi does not work

2014-03-13 Thread wilk
Christopher, I reenabled the driver causing trouble and so far I haven't
experienced any hangup, maybe a kernel has fixed the problem. I'll keep
an eye for it and be ready to report it as soon as it notice it.

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

Title:
  1286:2044 [Microsoft Surface Pro] Marvell 88W8797  wifi does not work

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

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


[Bug 1286939] Re: Update TaskWarrior package to the version 2.3.0

2014-03-03 Thread Jakub Wilk
FWIW, the sync feature is not enabled in the Debian package:

$ task sync
Taskwarrior was built without GnuTLS support.  Sync is not available.

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

Title:
  Update TaskWarrior package to the version 2.3.0

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

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


[Bug 1285390] Re: gpg hangs

2014-03-02 Thread wilk
I have the same problem running as root. I discovered that blacklisting
the mwifiex_usb (responsible for wifi and bluetooth if I'm not mistaken)
module fixed this problem: gpg doesn't hang anymore and the computer
can now be shut down. Of course you lose wifi...

I added a comment to Bug #1165938

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

Title:
  gpg hangs

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

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


[Bug 1165938] Re: 1286:2044 [Microsoft Surface Pro] Marvell 88W8797 wifi does not work

2014-03-02 Thread wilk
Not sure if it's the same problem here but with 13.10 64 bit no a Surface pro, 
this particular command
/usr/bin/gpg --with-colons --list-config
hangs at 
open(/dev/bus/usb/003/005, O_RDWR

lsusb indicates that this device is the wifi chip

Bus 003 Device 005: ID 1286:2044 Marvell Semiconductor, Inc.

Blacklisting the mwifiex_usb module seems to fix this problem.

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

Title:
  1286:2044 [Microsoft Surface Pro] Marvell 88W8797  wifi does not work

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

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


[Bug 1285390] [NEW] gpg hangs

2014-02-26 Thread wilk
Public bug reported:

gpg --with-colons --list-config hangs forever after diplaying

cfg:version:1.4.14
cfg:pubkey:1;2;3;16;17
cfg:cipher:1;2;3;4;7;8;9;10;11;12;13
cfg:ciphername:IDEA;3DES;CAST5;BLOWFISH;AES;AES192;AES256;TWOFISH;CAMELLIA128;CAMELLIA192;CAMELLIA256
cfg:digest:1;2;3;8;9;10;11
cfg:digestname:MD5;SHA1;RIPEMD160;SHA256;SHA384;SHA512;SHA224
cfg:compress:0;1;2;3

gpg cannot be killed after that, even with kill -9. This freezes any
program using gpg (gnus in Emacs in my case) and even prevents shutdown
and reboot.

I'm running Ubuntu 13.10 x86-64 on a Microsoft Surface Pro.

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

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

Title:
  gpg hangs

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

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


[Bug 1285390] Re: gpg hangs

2014-02-26 Thread wilk
I ran a strace, and it seems to hang at

open(/dev/bus/usb/003/005, O_RDWR

lsusb indicates that this device is

Bus 003 Device 005: ID 1286:2044 Marvell Semiconductor, Inc.

which it seems is the Wi-Fi chip.

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

Title:
  gpg hangs

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

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


[Bug 1057609] Re: HTTPS proxy support via Net::SSL is broken

2013-10-29 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #674788
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=674788

** Also affects: libnet-http-perl (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=674788
   Importance: Unknown
   Status: Unknown

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

Title:
  HTTPS proxy support via Net::SSL is broken

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnet-http-perl/+bug/1057609/+subscriptions

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


[Bug 1195621] [NEW] install error with emacs-snapshot

2013-06-28 Thread wilk
Public bug reported:

I installed emacs-snapshot from
https://launchpad.net/~cassou/+archive/emacs. Namazu2 installation fails
with:


Install namazu2 for emacs-snapshot
install/namazu: Byte-compiling for emacs-snapshot ...ERROR: install script from 
namazu2 package failed
dpkg: erreur de traitement de namazu2 (--configure) :
 le sous-processus script post-installation installé a retourné une erreur de 
sortie d'état 1

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

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

Title:
  install error with emacs-snapshot

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

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

[Bug 1195621] Re: install error with emacs-snapshot

2013-06-28 Thread wilk
Found a fix,, thanks to http://www.namazu.org/pipermail/namazu-users-
en/2013-June/000409.html.

change the first line  of /usr/share/emacs/site-lisp/namazu/namazu.el
to:

  ;;; namazu.el --- Support for Namazu.  -*- coding: iso-2022-jp-unix;
-*-

and the first line of /usr/share/emacs/site-lisp/namazu/gnus-nmz-1.el
to:

  ;;; gnus-nmz-1.el --- interface between Namazu and Gnus.  -*- coding:
iso-2022-jp-unix; -*-

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

Title:
  install error with emacs-snapshot

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

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


[Bug 1175139] Re: python-dap causes UserWarning: Module dap... printed in other python programs

2013-06-14 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #709376
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709376

** Also affects: pydap (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=709376
   Importance: Unknown
   Status: Unknown

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

Title:
  python-dap causes UserWarning: Module dap... printed in other python
  programs

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

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


Re: [Bug 1157757] Re: [Regression] Stuck CPU1-x when booting as Xen HVM guest on certain Intel hosts

2013-03-20 Thread Konrad Rzeszutek Wilk
On Wed, Mar 20, 2013 at 03:51:41PM -, Stefan Bader wrote:
 A bit more detail gather with dynamic debugging from smpboot.c:

.. snip..
 [0.115947] NMI watchdog: enabled on all CPUs, permanently consumes one 
 hw-PMU counter.
 [0.116065] register_vcpu_info failed: err=-22

That fails. Any idea why?

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

Title:
  [Regression] Stuck CPU1-x when booting as Xen HVM guest on certain
  Intel hosts

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

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


[Bug 1111470] Re: Precise kernel not bootable under Xen - alloc_l1_table

2013-02-01 Thread Konrad Rzeszutek Wilk
Stefan, so your gut feeling about the 228000 was right.

he E820_UNUSABLE regions are memory that can be used (and if you look
in 'xen_memory_setup' that is how we set aside the memory for the
balloon region - look for the 'type = E820_UNUSABLE). So by that logic,
E820_UNUSABLE region should get the same treatment as the rest of the
E820_RAM memory.

So this hack
diff --git a/arch/x86/xen/setup.c b/arch/x86/xen/setup.c
index 8971a26..e8172bf 100644
--- a/arch/x86/xen/setup.c
+++ b/arch/x86/xen/setup.c
@@ -396,6 +396,7 @@ char * __init xen_memory_setup(void)
  extra_pages);
i = 0;
while (i  memmap.nr_entries) {
+   bool fix_unusable = true;
u64 addr = map[i].addr;
u64 size = map[i].size;
u32 type = map[i].type;
@@ -407,9 +408,16 @@ char * __init xen_memory_setup(void)
size = min(size, (u64)extra_pages * PAGE_SIZE);
extra_pages -= size / PAGE_SIZE;
xen_add_extra_mem(addr, size);
-   } else
+   } else {
type = E820_UNUSABLE;
+   fix_unusable = false;
+   }
}
+   /*
+* Not sure about this.
+*/
+   if (type == E820_UNUSABLE  fix_unusable)
+   type = E820_RESERVED;
 
xen_align_and_add_e820_region(addr, size, type);
 

Would potentially fix it. But I am not sure what are the other cases where:
 a) It is OK to ignore E820_UNUSABLE altogether as provided by the hypervisor. 
Are there legitimate reasons for the BIOS to mark those as E820_UNUSABLE? 
Perhaps memory hotplug? (Jinsong from Intel could help answer that).
 b) Other? Perhaps the fix is in the hypervisor by clipping said memory 
completely out of the E820? In other words as if it had run with the 'mem=X' 
and it is oblivious to the non-MTRR region. But what if the MTRR region lies 
right in smack of other regions (like https://lkml.org/lkml/2012/8/24/474). The 
choice there would be to remove the E820 completly (but then we would think it 
is a PCI region, which might be OK or not - but this reminds me of 
http://lists.xen.org/archives/html/xen-devel/2011-02/msg01238.html where gaps 
are considered as I/O regions and could end up with the intel-agp trying to use 
it as its flush region).
c) Just leave it is as and document users to use 'dom0_mem=max' ? Perhaps we 
should codify it then? So if we detect the MTRR invalid regions we 
automatically set the dom0 maxpages as if 'dom0_mem=max:up to MTRR' was done? 
In reality that is what the hypervisor is doing - it will ignore those regions 
altogether - it is our misfortunate that we treat the region as if it was RAM 
(which actually is the right *thing*).

Thoughts?

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

Title:
  Precise kernel not bootable under Xen - alloc_l1_table

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

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


[Bug 1111470] Re: Precise kernel not bootable under Xen - alloc_l1_table

2013-01-31 Thread Konrad Rzeszutek Wilk
To get a better idea of what is wrong can you run a test for me please?
That is to boot the kernel+Xen without the 'dom0_mem' flag so that it
crashes. But lets make sure that on the Linux command line you have:
console=hvc0 earlyprintk=xen debug loglevel=8 and for extra measure on
the Xen command line pls also append: sync_console console=com1
com1=38400,8n1 loglvl=all guest_loglvl=all.

That should pinpoint where we fail.

Lastly, Stefan, is the kernel-debuginfo available somewhere easily? I am
mighty curious what EIP: 816415e1 is? I figured it has to be
pin_pagetable_pfn or xen_alloc_pte_init. And that the bug is somewhere
in the E820 parsing where it includes 228000 as RAM.

Also, it would be interesting to see if 'e820-mtrr-clip e820-verbose '
on the Xen command line resolves this as well?

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

Title:
  Precise kernel not bootable under Xen - alloc_l1_table

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

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


Re: [Bug 1078619] Re: [raring] xen power managment (freq scaling) fails on linux 3.7

2013-01-15 Thread Konrad Rzeszutek Wilk
On Tue, Jan 15, 2013 at 09:55:41AM -, Stefan Bader wrote:
 Actually the whole WRMSR trail is a red herring. The c0010020
 ones are from trying a microcode update. The c0010004 one is
 checking for performance counters and 0413, c408
 and c409 are related to machine check info (bank 4???). But
 I think all of them completely unrelated to this.
 
 The problem really is that the new quirk in ACPI code reads the MSR
 which should contain frequency information but gets 0 under Xen (without
 any other error message as far as I can see). Without further checking
 this value (only based on what cpu model this is running on) it
 calculates the P-state frequency. And that is always 1600Mhz. That value
 overwrites the values that have been already obtained by (I guess) the
 ACPI tables. So in the end the kernel info about the P-states says all

Aaah. I see it now, .. I am really surprised that
f594065faf4f9067c2283a34619fc0714e79a98d got stuck in a generic library
but I guess the quirks have to go somewhere.

 of them run at 1600MHz and that likely is considered non-sense, so the
 hypervisor refuses to start the ondemand governor. Or maybe it does do
 something but its hard to differentiate between all of the 1600MHz
 states... ;)

nods

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

Title:
  [raring] xen power managment (freq scaling) fails on linux 3.7

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

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


Re: [Bug 1078619] Re: [raring] xen power managment (freq scaling) fails on linux 3.7

2013-01-14 Thread Konrad Rzeszutek Wilk
On Mon, Jan 14, 2013 at 03:57:48PM -, Stefan Bader wrote:
 Starting with kernel v3.7 the following commit added a quirk
 to obtain the real frequencies of certain AMD systems:
 
 commit f594065faf4f9067c2283a34619fc0714e79a98d
 Author: Matthew Garrett m...@redhat.com
 Date:   Tue Sep 4 08:28:06 2012 +
 
 ACPI: Add fixups for AMD P-state figures
 
 When running bare-metal, on my Opteron 6128 test box results
 in the frequencies remaining effectively unchanged:
 [5.475735] P0: MSR(hi,lo): 815c-50004004
 [5.479049] P0: fid=0x4, did=0x0, freq: 2000 - 2000
 [5.484001] P1: MSR(hi,lo): 814c-50004a4e
 [5.487314] P1: fid=0xe, did=0x1, freq: 1500 - 1500
 [5.492272] P2: MSR(hi,lo): 8141-50005048
 [5.495584] P2: fid=0x8, did=0x1, freq: 1200 - 1200
 [5.500540] P3: MSR(hi,lo): 8138-50005844
 [5.503853] P3: fid=0x4, did=0x1, freq: 1000 - 1000
 [5.508812] P4: MSR(hi,lo): 8131-50005c40
 [5.512125] P4: fid=0x0, did=0x1, freq: 800 - 800
 
 However running as dom0 under Xen 4.2, reading this MSR returns
 null:
 [   11.613068] P0: MSR(hi,lo): -
 [   11.613074] P0: fid=0x0, did=0x0, freq: 2000 - 1600
 [   11.613078] P1: MSR(hi,lo): -
 [   11.613081] P1: fid=0x0, did=0x0, freq: 1500 - 1600
 [   11.613085] P2: MSR(hi,lo): -
 [   11.613088] P2: fid=0x0, did=0x0, freq: 1200 - 1600
 [   11.613091] P3: MSR(hi,lo): -
 [   11.613094] P3: fid=0x0, did=0x0, freq: 1000 - 1600
 [   11.613098] P4: MSR(hi,lo): -
 [   11.613101] P4: fid=0x0, did=0x0, freq: 800 - 1600
 
 And this results in Xen failing to change the governor:
   (XEN) Fail change to ondemand governor

Uh, when does this occur? Is tha right after those MSRs are writen?
I would have expected the Fail change to ondemand governor to
be irrespective of the dom0 change. But maybe this is with
cpufreq=dom0 on the Xen command line?

Does xenpm tell you that you got P and C states?

 
 I suppose this ultimately requires some support in the hypervisor
 to pass through the real values. But since this is at least on my
 combination of Xen 4.2 + kernel v3.7+ and AMD family 0x10 CPU a
 regression compared to older kernels, I wonder whether the following
 change might be something that should go into mainline:
 
 --- a/drivers/acpi/processor_perflib.c
 +++ b/drivers/acpi/processor_perflib.c
 @@ -340,6 +340,9 @@ static void amd_fixup_frequency(struct acpi_processor_px 
 *px
 if ((boot_cpu_data.x86 == 0x10  boot_cpu_data.x86_model  10)
 || boot_cpu_data.x86 == 0x11) {
 rdmsr(MSR_AMD_PSTATE_DEF_BASE + index, lo, hi);
 +   /* Bit 63 indicates whether contents are valid */
 +   if (!(hi  0x800))
 +   return;

Looks innocent enough and a good idea to make sure that the contents
are indeed valid..
 fid = lo  0x3f;
 did = (lo  6)  7;
 if (boot_cpu_data.x86 == 0x10)


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

Title:
  [raring] xen power managment (freq scaling) fails on linux 3.7

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

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


[Bug 1011792] Re: Kernel lockup running 3.0.0 and 3.2.0 on multiple EC2 instance types

2012-11-27 Thread Konrad Rzeszutek Wilk
Stefan,
Is your patch somewhere accessible? Thx

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

Title:
  Kernel lockup running 3.0.0 and 3.2.0 on multiple EC2 instance types

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

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


Re: [Bug 1078619] Re: [raring] xen power managment (freq scaling) fails on linux 3.7

2012-11-19 Thread Konrad Rzeszutek Wilk
On Mon, Nov 19, 2012 at 10:36:45AM -, Stefan Bader wrote:
 May or may not related Xen messages:
 
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc4000100 to 0xc00804000100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1010100 to 0xc00801010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010004 from 
 0xfffcaf83dad0 to 0xfffcaf83252f.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc4000100 to 0xc00804000100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1010100 to 0xc00801010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc4000100 to 0xc00804000100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1010100 to 0xc00801010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc4000100 to 0xc00804000100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1010100 to 0xc00801010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR 0413 from 
 0xc00c0ffe0100 to 0xc0080ffe0100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc5010100 to 0xc00805010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1c10100 to 0xc00801c10100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR 0413 from 
 0xc00c0ffe0100 to 0xc0080ffe0100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc5010100 to 0xc00805010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1c10100 to 0xc00801c10100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR 0413 from 
 0xc00c0ffe0100 to 0xc0080ffe0100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc5010100 to 0xc00805010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1c10100 to 0xc00801c10100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR 0413 from 
 0xc00c0ffe0100 to 0xc0080ffe0100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c408 from 
 0xc5010100 to 0xc00805010100.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c409 from 
 0xc1c10100 to 0xc00801c10100.
 (XEN) mm.c:874: d0: Forcing read-only access to MFN e0002
 (XEN) Fail change to ondemand governor
 (XEN) Fail change to ondemand governor
 (XEN) Fail change to ondemand governor
 (XEN) Fail change to ondemand governor
 (XEN) Fail change to ondemand governor
 (XEN) Fail change to ondemand governor

Those look suspicious and I have to say I think I saw those
too on one of my machines - but I can't recall whether
the xenpm worked afterwards.

 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 (XEN) traps.c:2584:d0 Domain attempted WRMSR c0010020 from 
 0x to 0x880003cb9c00.
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1078619
 
 Title:
   [raring] xen power managment (freq scaling) fails on linux 3.7
 
 Status in “linux” package in Ubuntu:
   Triaged
 
 Bug description:
   While testing the current 3.7.0-0.5 kernel together with the Xen 4.2
   package I noticed that xenpm get-cpufreq-para 0 would weirdly report
   only one available frequency. Booting back into kernel 3.5.0-18.29
   with the same userspace shows the expected output:
 
   cpu id   : 0
   affected_cpus: 0
   cpuinfo frequency: max [200] min [80] cur [80]
   scaling_driver   :
   scaling_avail_gov: userspace performance powersave ondemand
   current_governor : ondemand
     ondemand specific  :
   sampling_rate: max [1000] min [1] cur [2]
   up_threshold : 80
   scaling_avail_freq   : 200 150 120 100 *80
   scaling frequency: max [200] min [80] cur [80]
 
   Bad output on 3.7:
 
   cpu id   : 0
   affected_cpus: 0
   cpuinfo frequency: max [160] min [160] cur [160]
   

[Bug 1078619] Re: [raring] xen power managment (freq scaling) fails on linux 3.7

2012-11-16 Thread Konrad Rzeszutek Wilk
Hm
I don't know what Ubuntu's 3.7 contains, but if I run the v3.6 vanilla on an 
Intel  SWQ6710H.86A.0052.2011.0520.1802
(i5-2100) I get:
 xenpm get-cpufreq-para
cpu id   : 0
affected_cpus: 0
cpuinfo frequency: max [3301000] min [160] cur [330]
scaling_driver   : acpi-cpufreq
scaling_avail_gov: userspace performance powersave ondemand
current_governor : ondemand
  ondemand specific  :
sampling_rate: max [1000] min [1] cur [2]
up_threshold : 80
scaling_avail_freq   : 3301000 330 310 290 270 250 230 
210 190 170 *160
scaling frequency: max [3301000] min [160] cur [160]
turbo mode   : enabled

and with v3.7-rc5:
 xenpm get-cpufreq-para
cpu id   : 0
affected_cpus: 0
cpuinfo frequency: max [3301000] min [160] cur [330]
scaling_driver   : acpi-cpufreq
scaling_avail_gov: userspace performance powersave ondemand
current_governor : ondemand
  ondemand specific  :
sampling_rate: max [1000] min [1] cur [2]
up_threshold : 80
scaling_avail_freq   : 3301000 330 310 290 270 250 230 
210 190 170 *160
scaling frequency: max [3301000] min [160] cur [160]
turbo mode   : enabled

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

Title:
  [raring] xen power managment (freq scaling) fails on linux 3.7

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

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


[Bug 1078619] Re: [raring] xen power managment (freq scaling) fails on linux 3.7

2012-11-16 Thread Konrad Rzeszutek Wilk
19:40:45 # 10 :~/ 
 xl info
host   : tst018.dumpdata.com
release: 3.7.0-rc5upstream
version: #1 SMP Fri Nov 16 14:15:58 EST 2012
machine: x86_64
nr_cpus: 4
max_cpu_id : 3
nr_nodes   : 1
cores_per_socket   : 4
threads_per_core   : 1
cpu_mhz: 3292
hw_caps: 
bfebfbff:28100800::3f00:17bae3f7::0001:
virt_caps  : hvm hvm_directio
total_memory   : 16296
free_memory: 13006
sharing_freed_memory   : 0
sharing_used_memory: 0
free_cpus  : 0
xen_major  : 4
xen_minor  : 3
xen_extra  : -unstable
xen_caps   : xen-3.0-x86_64 xen-3.0-x86_32p hvm-3.0-x86_32 
hvm-3.0-x86_32p hvm-3.0-x86_64 
xen_scheduler  : credit
xen_pagesize   : 4096
platform_params: virt_start=0x8000
xen_changeset  : unavailable
xen_commandline: cpufreq=verbose,performance vpmu=1 dom0_mem=max:3G 
apic=debug apic_verbosity=debug console=vga loglvl=all vpmu=1 guest_loglvl=all 
apic=debug
cc_compiler: gcc (GCC) 4.4.4 20100503 (Red Hat 4.4.4-2)
cc_compile_by  : konrad
cc_compile_domain  : dumpdata.com
cc_compile_date: Fri Nov 16 14:16:12 EST 2012
xend_config_format : 4

So I am looking to be also be running the latest Xen

Just curious - did you turn _off_ the machine before booting in v3.7
kernel after the upgrade? Meaning do it from a cold boot.

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

Title:
  [raring] xen power managment (freq scaling) fails on linux 3.7

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

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


Re: [Bug 1011792] Re: Kernel lockup running 3.0.0 and 3.2.0 on multiple EC2 instance types

2012-11-13 Thread Konrad Rzeszutek Wilk
On Mon, Nov 12, 2012 at 08:47:11PM -, Steven Noonan wrote:
 Stefan,
 
 I did our internal SSD and network performance testing qualifications on
 hi1.4xlarge with CONFIG_PARAVIRT_SPINLOCKS=n in the kernel build.
 There's very little discernible difference in performance (within
 statistical noise ranges), and the benefits of disabling it are pretty
 clear. Can CONFIG_PARAVIRT_SPINLOCKS be disabled in the Ubuntu -virtual
 kernel so we can close out this bug, please?

Yikes, that would be quite bad for overcommitted scenarios and
for running the guest on non-PLE hardware.

I am looking at the bug now to get an idea of what is happening
and how to reproduce it.
 
 -- 
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/1011792
 
 Title:
   Kernel lockup running 3.0.0 and 3.2.0 on multiple EC2 instance types
 
 Status in “linux” package in Ubuntu:
   Confirmed
 Status in “linux-lts-backport-oneiric” package in Ubuntu:
   Confirmed
 
 Bug description:
   Scheduler deadlocks have been observed on c1.xlarge EC2 instances
   running 10.04.3 LTS with the  3.0.0-20-virtual Oneiric backport
   kernel. The symptoms appear similar to bug 929941, where multiple CPUs
   are waiting on scheduler runqueue locks. But in this case, only a few
   CPUs are stuck.
 
   A typical set of stack traces from the guest state looks like:
 
   VCPU0
   rip: 810013aa hypercall_page+0x3aa
   flags: 1202 i nz
   rsp: 8801b3c27910
   rax:    rcx: 810013aa   rdx: 8801b3c27954
   rbx: 88000265cb30   rsi: 8801b3c27938   rdi: 0003
   rbp: 8801b3c27958r8: 0001r9: 0001
   r10:    r11: 0202   r12: 0011
   r13: 0001   r14: 0001   r15: 
cs: e033ss: e02bds: es: 
fs:  @ 7f4ce223f700
gs:  @ 8801bfed4000/
 
   cr0: 80050033
   cr2: 0061ade0
   cr3: 0e93d000
   cr4: 2660
 
   dr0: 
   dr1: 
   dr2: 
   dr3: 
   dr6: 0ff0
   dr7: 0400
   Code (instr addr 810013aa)
   cc cc cc cc cc cc cc cc cc cc cc 51 41 53 b8 1d 00 00 00 0f 05 41 5b 59 
 c3 cc cc cc cc cc cc cc
 
   
   Stack:
0246  81394b42 8801b3c27938
 8801b3c27954 0001 
000481394ad6 8801b3c27968 81394b60 8801b3c279b8
8100933f 8801b3c27a48  8801b3c27998
 
   Call Trace:
 [810013aa] hypercall_page+0x3aa  --
 [81394b42] xen_poll_irq_timeout+0x42
 [81394b60] xen_poll_irq+0x10
 [8100933f] xen_spin_lock_slow+0x7f
 [81009435] xen_spin_lock_flags+0x75
 [8160365f] _raw_spin_lock_irqsave+0x2f
 [8104ee50] task_rq_lock+0x40
 [8104f069] task_sched_runtime+0x29
 [81085f38] thread_group_cputime+0x88
 [812c4dc9] apparmor_ptrace_access_check+0x39
 [81051593] thread_group_times+0x33
 [811d4192] do_task_stat+0x6d2
 [8160361e] _raw_spin_lock+0xe
 [8119165f] seq_open+0x4f
 [811d0380] sched_autogroup_show+0x70
 [811d0380] sched_autogroup_show+0x70
 [8119173a] single_open+0x7a
 [811cdbf0] sched_open+0x20
 [811cdc0b] proc_single_open+0x1b
 [8118e460] mntput_no_expire+0x60
 [8118e5ad] mntput+0x1d
 [811d4624] proc_tgid_stat+0x14
 [811d03e1] proc_single_show+0x61
 [81191be2] seq_read+0xf2
 [8116fe35] vfs_read+0xc5
 [81170001] sys_read+0x51
 [8160ba02] system_call_fastpath+0x16
 
   
   VCPU1
   rip: 8105a777 try_to_wake_up+0xd7
   flags: 1202 i nz
   rsp: 8801bfef28f0
   rax: 0003   rcx:    rdx: 0001
   rbx: 00012980   rsi: 8801b1990078   rdi: 
   rbp: 8801bfef2950r8: r9: 
   r10:    r11: fb981853   r12: 88000265c530
   r13:    r14: 88000265cb30   r15: 
cs: e033ss: e02bds: es: 
fs:  @ 7ff68926c700
gs:  @ 8801bfeef000/
 
   cr0: 8005003b
   cr2: 00441d80
   cr3: 1174cb000
   cr4: 2660
 
   dr0: 
   dr1: 
   dr2: 
   dr3: 
   dr6: 0ff0
   dr7: 0400
   Code (instr addr 8105a777)
   00 00 eb 0c 66 2e 0f 1f 84 00 00 00 00 00 f3 90 41 8b 54 24 28 85 d2 75 
 f5 49 8b 14 24 31 c0 83
 
   
   Stack:
 8801b41d2858 8801bfef2950 8153e51e
00030004 8801b1990078 8801bfef2930 8800026f6c18
0001 8800026f6c30 

[Bug 1023067] [NEW] gcrystal error when importing file sfrom previous versions

2012-07-10 Thread wilk
Public bug reported:

An error in the parsing  prevents gcrystal from correctly displaying crystal 
files from previous versions. It's been reported in 
http://lists.nongnu.org/archive/html/gchemutils-main/2012-06/msg0.html, and 
corrected gchemutils 0.12.12 for which a debian package has been released. I 
tried building the debian package but it depends on xulrunner-dev which isn't 
shipped with ubuntu anymore.

Could someone please upgrade the ubuntu package to 0.12.12 ?

Julien.

** Affects: gnome-chemistry-utils (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  gcrystal error when importing file sfrom previous versions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-chemistry-utils/+bug/1023067/+subscriptions

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


[Bug 878653] Re: djvview-plugin version 4.7-1 crashes always in Firefox

2012-06-17 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #659520
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659520

** Also affects: djview4 (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659520
   Importance: Unknown
   Status: Unknown

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

Title:
  djvview-plugin version 4.7-1 crashes always in Firefox

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

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


[Bug 329809] Re: sound-juicer crashes when pressing Extract button, with SIGSEGV in filepath_parse_pattern()

2012-06-01 Thread wilk
Is there a deb file for 4.0.2 or newer ?

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

Title:
  sound-juicer crashes when pressing Extract button, with SIGSEGV in
  filepath_parse_pattern()

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

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


[Bug 933591] Re: SongWrite crashes before it even opens

2012-05-09 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #672210
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672210

** Also affects: songwrite (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=672210
   Importance: Unknown
   Status: Unknown

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

Title:
  SongWrite crashes before it even opens

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

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


[Bug 917211] Re: Xen + nouveau + modeset = corrupted console

2012-03-31 Thread Konrad Rzeszutek Wilk
Joseph, sorry for the delay - I am somehow not getting email updates on
bugs that I've commented on.

So applying the patches requires them to be upstream  - and while Dave
Airlie had not trouble with them, he did suggest to concentrate on
PCIe/PCI subset.

Anyhow, I can dust them off and start respining them for upstream - but
the issue I forsee is more of testing. The patches rework the AGP API
code and to make sure that it does not impact negatively older platforms
I should do due diligence and test them (for regressions). I have some
of the AGP chipset motherboards (nvidia, intel, sisworks, and via), but
I lack the really weird ones - like SGI ZX1 chipset or the Transmeta
boxes. Perhaps if somebody has them laying around I can do this but
without that hardware in hand there is a risk..

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

Title:
  Xen + nouveau + modeset = corrupted console

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

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


[Bug 898112] Re: Xen performance issue: backport acpi-cpufreq.v4 branch to 3.2 kernel for Precise

2012-03-31 Thread Konrad Rzeszutek Wilk
Joseph, ugh. I don't think Greg KH's would be OK with submitting feature
drivers in stable kernels? Has he done so in the past?

Anyhow here are the links to the gits for this driver and its belt-and-suspends:
Mechanism to disable the CPU freq drivers.
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=448c8b1d07d5342922567e138a4b0108a42c24fb
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=102b208e6b3b16d3611b67a7af9a93d30b92c006

The driver itself (with fixes)
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=59a56802918100c1e39e68c30a2e5ae9f7d837f0
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=27257fc07c044af99d85400c4bab670342bbc8a5
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=df7a3ee29b775edd1c2d75cf0b128b174bd4091e

And for the xen-tree:
http://xen.1045712.n5.nabble.com/PATCH-linux-xencommons-Load-xen-acpi-processor-td5589516.html

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

Title:
  Xen performance issue: backport acpi-cpufreq.v4 branch to 3.2 kernel
  for Precise

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

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


[Bug 898112] Re: Xen performance issue: backport acpi-cpufreq.v4 branch to 3.2 kernel for Precise

2012-03-31 Thread Konrad Rzeszutek Wilk
And this one (which calls disable_cpufreq()):

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commit;h=48cdd8287f47a3cdad5b9273a5ef81bf605f7826

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

Title:
  Xen performance issue: backport acpi-cpufreq.v4 branch to 3.2 kernel
  for Precise

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

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


[Bug 531976] Re: libnss_db reads a DB_CONFIG file in the current directory

2012-03-30 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #577057
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577057

** Also affects: libnss-db (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=577057
   Importance: Unknown
   Status: Unknown

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

Title:
  libnss_db reads a DB_CONFIG file in the current directory

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libnss-db/+bug/531976/+subscriptions

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


[Bug 898112] Re: Xen performance issue: backport acpi-cpufreq.v4 branch to 3.2 kernel for Precise

2012-03-16 Thread Konrad Rzeszutek Wilk
They are in #linux-next for 3.4:

http://git.kernel.org/?p=linux/kernel/git/konrad/xen.git;a=commit;h=59a56802918100c1e39e68c30a2e5ae9f7d837f0

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

Title:
  Xen performance issue: backport acpi-cpufreq.v4 branch to 3.2 kernel
  for Precise

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

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


[Bug 820896] Re: freshclam ERROR: Database load killed by signal 11

2012-03-10 Thread Marcin Wilk
*** This bug is a duplicate of bug 766519 ***
https://bugs.launchpad.net/bugs/766519

Same problem here:
 # catchsegv freshclam
ClamAV update process started at Sat Mar 10 21:59:36 2012
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.96.5 Recommended version: 0.97.3
DON'T PANIC! Read http://www.clamav.net/support/faq
main.cvd is up to date (version: 54, sigs: 1044387, f-level: 60, builder: sven)
daily.cld is up to date (version: 14627, sigs: 114302, f-level: 63, builder: 
guitar)
connect_error: getsockopt(SO_ERROR): fd=4 error=110: Connection timed out
Can't connect to port 80 of host db.local.clamav.net (IP: 188.40.42.237)
Downloading bytecode.cvd [100%]
[LibClamAV] ***
[LibClamAV] ***  This version of the ClamAV engine is outdated. ***
[LibClamAV] *** DON'T PANIC! Read http://www.clamav.net/support/faq ***
[LibClamAV] ***
ERROR: During database load : *** Segmentation fault [...] 
ff60-ff601000 r-xp  00:00 0  
[vsyscall]
ERROR: Database load killed by signal 11
ERROR: Failed to load new database: No viruses detected

 cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 42
model name  : Intel(R) Xeon(R) CPU E31245 @ 3.30GHz
stepping: 7
cpu MHz : 1600.000
cache size  : 8192 KB
physical id : 0
siblings: 8
core id : 0
cpu cores   : 4
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf 
pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 
sse4_2 x2apic popcnt aes xsave avx lahf_lm ida arat tpr_shadow vnmi 
flexpriority ept vpid
bogomips: 6600.23
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to clamav in Ubuntu.
https://bugs.launchpad.net/bugs/820896

Title:
  freshclam ERROR: Database load killed by signal 11

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

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 820896] Re: freshclam ERROR: Database load killed by signal 11

2012-03-10 Thread Marcin Wilk
*** This bug is a duplicate of bug 766519 ***
https://bugs.launchpad.net/bugs/766519

Same problem here:
 # catchsegv freshclam
ClamAV update process started at Sat Mar 10 21:59:36 2012
WARNING: Your ClamAV installation is OUTDATED!
WARNING: Local version: 0.96.5 Recommended version: 0.97.3
DON'T PANIC! Read http://www.clamav.net/support/faq
main.cvd is up to date (version: 54, sigs: 1044387, f-level: 60, builder: sven)
daily.cld is up to date (version: 14627, sigs: 114302, f-level: 63, builder: 
guitar)
connect_error: getsockopt(SO_ERROR): fd=4 error=110: Connection timed out
Can't connect to port 80 of host db.local.clamav.net (IP: 188.40.42.237)
Downloading bytecode.cvd [100%]
[LibClamAV] ***
[LibClamAV] ***  This version of the ClamAV engine is outdated. ***
[LibClamAV] *** DON'T PANIC! Read http://www.clamav.net/support/faq ***
[LibClamAV] ***
ERROR: During database load : *** Segmentation fault [...] 
ff60-ff601000 r-xp  00:00 0  
[vsyscall]
ERROR: Database load killed by signal 11
ERROR: Failed to load new database: No viruses detected

 cat /proc/cpuinfo
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 42
model name  : Intel(R) Xeon(R) CPU E31245 @ 3.30GHz
stepping: 7
cpu MHz : 1600.000
cache size  : 8192 KB
physical id : 0
siblings: 8
core id : 0
cpu cores   : 4
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf 
pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 
sse4_2 x2apic popcnt aes xsave avx lahf_lm ida arat tpr_shadow vnmi 
flexpriority ept vpid
bogomips: 6600.23
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

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

Title:
  freshclam ERROR: Database load killed by signal 11

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

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


[Bug 935385] Re: python-djvulibre version 0.3.3-1 FTBFS on i386 in precise

2012-03-10 Thread Jakub Wilk
In Debian translations of libc messages are included in the locales
package, which is python-djvulibre's Build-Depends.

I think that in Ubuntu these translations are shipped in separate
language packs.

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

Title:
  python-djvulibre version 0.3.3-1 FTBFS on i386 in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-djvulibre/+bug/935385/+subscriptions

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


[Bug 938739] Re: odfwriter fails when using a config file with non ascii names

2012-03-10 Thread Jakub Wilk
I forwarded the bug upstream:
http://sourceforge.net/tracker/?group_id=38414atid=422030

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

Title:
  odfwriter fails when using a config file with non ascii names

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-docutils/+bug/938739/+subscriptions

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


[Bug 935385] Re: python-djvulibre version 0.3.3-1 FTBFS on i386 in precise

2012-02-18 Thread Jakub Wilk
Upstream commit to fix failure in test_export_ps:
https://bitbucket.org/jwilk/python-djvulibre/changeset/5bee6af2b1d1

I'm not sure what's up with the other failure.

** Bug watch added: Debian Bug tracker #646177
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646177

** Also affects: python-djvulibre (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646177
   Importance: Unknown
   Status: Unknown

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

Title:
  python-djvulibre version 0.3.3-1 FTBFS on i386 in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-djvulibre/+bug/935385/+subscriptions

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


[Bug 681062] Re: python-html5lib too new for python-pisa

2012-01-24 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #657136
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=657136

** Also affects: pisa (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=657136
   Importance: Unknown
   Status: Unknown

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

Title:
  python-html5lib too new for python-pisa

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

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


[Bug 917211] Re: Xen + nouveau + modeset = corrupted console

2012-01-24 Thread Konrad Rzeszutek Wilk
Your card is AGP right? This patchset:
https://lkml.org/lkml/2010/12/6/464 fixes it but I haven't gone back to
that patch set since I figured nobody uses AGP anymore :-(

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

Title:
  Xen + nouveau + modeset = corrupted console

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

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


[Bug 197589] Re: Numeric keypad no longer works after upgrade

2011-10-25 Thread wilk
It happened to me going from Natty to Oneiric, @Eric coud you fix it ?

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

Title:
  Numeric keypad no longer works after upgrade

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/197589/+subscriptions

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



[Bug 824089] Re: Xen blkfront i/o errors prevent boot in domU

2011-10-13 Thread Konrad Rzeszutek Wilk
What is your dom0?

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

Title:
  Xen blkfront i/o errors prevent boot in domU

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

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


[Bug 673302] Re: appmenu-gtk breaks dynamically created Emacs Gtk+ menus

2011-07-25 Thread wilk
I have a history with this bug :
* I experienced it with emacs23 from the standard Ubuntu repository but it 
disappeared at some point.
* I experienced it agains with emacs-snapshot from 
http://emacs.naquadah.org/natty/ and fixed it by chance. Just running 
emacs-snapshot through sudo once was needed. Now the menus appear even when I 
run it without sudo.

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

Title:
  appmenu-gtk breaks dynamically created Emacs Gtk+ menus

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

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


[Bug 771051] Re: pdf2djvu version 0.7.4-2build2 failed to build on amd64 with GCC-4.6/oneiric

2011-04-26 Thread Jakub Wilk
IIRC, this is fixed upstream (in 0.7.7):
http://code.google.com/p/pdf2djvu/source/detail?r=6ee8acd4fd61

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

Title:
  pdf2djvu version 0.7.4-2build2 failed to build on amd64 with
  GCC-4.6/oneiric

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


[Bug 737250] Re: mercurial-git does not work with mercurial-1.7.5 and above as in natty

2011-03-17 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #617892
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617892

** Also affects: hg-git (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617892
   Importance: Unknown
   Status: Unknown

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

Title:
  mercurial-git does not work with mercurial-1.7.5 and above as in natty

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


[Bug 737250] Re: mercurial-git does not work with mercurial-1.7.5 and above as in natty

2011-03-17 Thread Jakub Wilk
*** This bug is a duplicate of bug 731432 ***
https://bugs.launchpad.net/bugs/731432

** Changed in: hg-git (Debian)
   Importance: Unknown = Undecided

** Changed in: hg-git (Debian)
   Status: Unknown = New

** Changed in: hg-git (Debian)
 Remote watch: Debian Bug tracker #617892 = None

** Bug watch removed: Debian Bug tracker #617892
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=617892

** Changed in: hg-git (Debian)
   Status: New = Fix Released

** This bug has been marked a duplicate of bug 731432
   mercurial: TypeError: findoutgoing() got an unexpected keyword argument 
'heads'
 * You can subscribe to bug 731432 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/mercurial/+bug/731432/+subscribe

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

Title:
  mercurial-git does not work with mercurial-1.7.5 and above as in natty

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


[Bug 486218] Re: kerneltop reports wrong map line on 2.6.31-14-generic

2011-03-04 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #607309
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607309

** Also affects: kerneltop (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=607309
   Importance: Unknown
   Status: Unknown

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

Title:
  kerneltop reports wrong map line on 2.6.31-14-generic

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


[Bug 594919] Re: undefined symbol: PyOS_mystricmp

2011-03-04 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #614627
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=614627

** Also affects: python-lzma (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=614627
   Importance: Unknown
   Status: Unknown

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

Title:
  undefined symbol: PyOS_mystricmp

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


[Bug 478164] Re: hotssh crashed with ValueError in __read_hosts()

2011-03-01 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #578529
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578529

** Also affects: hotssh (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578529
   Importance: Unknown
   Status: Unknown

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

Title:
  hotssh crashed with ValueError in __read_hosts()

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


[Bug 664276] Re: python-numpy doc related build failure

2011-02-09 Thread Jakub Wilk
** Bug watch added: Debian Bug tracker #608842
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608842

** Also affects: python-numpy (Debian) via
   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=608842
   Importance: Unknown
   Status: Unknown

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

Title:
  python-numpy doc related build failure

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


  1   2   >