[Bug 1174630] [NEW] Unable to run Tempest against Grizzly due to out-of-date python-testtools.

2013-04-30 Thread vlowther
Public bug reported:

http://ubuntu-cloud.archive.canonical.com/ubuntu precise-updates/grizzly
packages version 0.9.24 of python-testtools, but Tempest for Grizzly (at
https://github.com/openstack/tempest/tarball/stable/grizzly.tar.gz)
requires at least version 0.9.29.  As a result, all of the Tempest test
runs fail with the following stack trace from Python:

 ==
ERROR: Failure: AttributeError ('module' object has no attribute 
'WithAttributes')
--
Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/nose/loader.py", line 390, in 
loadTestsFromName
addr.filename, addr.module)
  File "/usr/lib/python2.7/dist-packages/nose/importer.py", line 39, in 
importFromPath
return self.importFromDir(dir_path, fqname)
  File "/usr/lib/python2.7/dist-packages/nose/importer.py", line 86, in 
importFromDir
mod = load_module(part_fqname, fh, filename, desc)
  File "/opt/tempest/tempest/tests/volume/admin/test_volume_types_negative.py", 
line 22, in 
from tempest.tests.volume import base
  File "/opt/tempest/tempest/tests/volume/base.py", line 24, in 
import tempest.test
  File "/opt/tempest/tempest/test.py", line 52, in 
testtools.testcase.WithAttributes,
AttributeError: 'module' object has no attribute 'WithAttributes'

** Affects: python-testtools (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/1174630

Title:
  Unable to run Tempest against Grizzly due to out-of-date python-
  testtools.

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

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


[Bug 1033632] [NEW] Ubuntu 12.04 fails to boot on PowerEdge R720/R720XD when running in UEFI mode

2012-08-06 Thread vlowther
Public bug reported:

After installing vanilla Ubuntu 12.04 on a couple of PowerEdge R720 and
R720XD systems over the network, the freshly-installed system crashes
the EFI BIOS instead of booting to the operating system.  A quick Google
search yields that it appears to be an issue with how Grub is allocating
memory, and a patch for the issue has been posted at
http://savannah.gnu.org/bugs/?36532

Switching go using legacy BIOS works, but is not an option due to its
limitations on usable space on the RAID volumes the OS is installed on.

** Affects: grub2 (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/1033632

Title:
  Ubuntu 12.04 fails to boot on PowerEdge R720/R720XD when running in
  UEFI mode

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

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


[Bug 524956] Re: Dell Studio 1555 - ACPI thermal sensors do not work after resume

2010-03-09 Thread vlowther
The fix mentioned in that tree of commenting out the if(EC_FLAGS_MSI)
lines in acpi_space_handler in ec.c and letting it unconditionally
enable and then disable burst mode works for me.

-- 
Dell Studio 1555 - ACPI thermal sensors do not work after resume
https://bugs.launchpad.net/bugs/524956
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 524956] Re: Dell Studio 1555 - ACPI thermal sensors do not work after resume

2010-03-08 Thread vlowther
Upstream bug: http://bugzilla.kernel.org/show_bug.cgi?id=14667

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

-- 
Dell Studio 1555 - ACPI thermal sensors do not work after resume
https://bugs.launchpad.net/bugs/524956
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 524956] Re: Dell Studio 1555 - ACPI thermal sensors do not work after resume

2010-03-08 Thread vlowther
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2a84cb9852f52c0cd1c48bca41a8792d44ad06cc
causes it.  Too bad it is the same patch that fixes the aborted
transactions bug.

-- 
Dell Studio 1555 - ACPI thermal sensors do not work after resume
https://bugs.launchpad.net/bugs/524956
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 392812] Re: Dell Studio 1555: cannot change display brightness after a while, other hotkeys and ACPI stuff begin to fail

2009-11-07 Thread vlowther
Commenting out the goto end; line in acpi_ec_transaction and recompiling
the kernel from source works around the bug for me -- I still get the
"input buffer not empty" error messages in dmesg, but the brightness
keys and AC adapter detection continue to work.

static int acpi_ec_transaction(struct acpi_ec *ec, struct transaction *t,
   int force_poll)   
{
int status;  
u32 glk; 
if (!ec || (!t) || (t->wlen && !t->wdata) || (t->rlen && !t->rdata))
return -EINVAL; 
if (t->rdata)   
memset(t->rdata, 0, t->rlen);   
mutex_lock(&ec->lock);  
if (ec->global_lock) {  
status = acpi_acquire_global_lock(ACPI_EC_UDELAY_GLK, &glk);
if (ACPI_FAILURE(status)) { 
status = -ENODEV;   
goto unlock;
}   
}   
if (ec_wait_ibf0(ec)) { 
pr_err(PREFIX "input buffer is not empty, " 
"aborting transaction--\n");
status = -ETIME;
//goto end; 

}
status = acpi_ec_transaction_unlocked(ec, t, force_poll);
end: 
if (ec->global_lock) 
acpi_release_global_lock(glk);   
unlock:  
mutex_unlock(&ec->lock); 
return status;   
}

-- 
Dell Studio 1555: cannot change display brightness after a while, other hotkeys 
and ACPI stuff begin to fail
https://bugs.launchpad.net/bugs/392812
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 432248] Re: mountall is an opaque, impossible to debug binary blob instead of a debuggable set of shell scripts

2009-09-21 Thread vlowther
Yes, that works just fine if your box can get on the network or you had
the foresight to install that source + all build dependencies before you
get into a situation where your box no longer boots.

Those of us who have actually had to support systems that have boot
problems strongly prefer things we can actually debug and fix on the fly
without needing a C compiler.


** Changed in: mountall (Ubuntu)
   Status: Invalid => New

-- 
mountall is an opaque, impossible to debug binary blob instead of a debuggable 
set of shell scripts
https://bugs.launchpad.net/bugs/432248
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 432248] Re: mountall is an opaque, impossible to debug binary blob instead of a debuggable set of shell scripts

2009-09-20 Thread vlowther
Sure thing!  Here is my /sbin/mountall script and my updated
/sbin/mountall.conf.

** Attachment added: "mountall"
   http://launchpadlibrarian.net/32110710/mountall

-- 
mountall is an opaque, impossible to debug binary blob instead of a debuggable 
set of shell scripts
https://bugs.launchpad.net/bugs/432248
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 432248] Re: mountall is an opaque, impossible to debug binary blob instead of a debuggable set of shell scripts

2009-09-20 Thread vlowther

** Attachment added: "mountall.conf"
   http://launchpadlibrarian.net/32110823/mountall.conf

-- 
mountall is an opaque, impossible to debug binary blob instead of a debuggable 
set of shell scripts
https://bugs.launchpad.net/bugs/432248
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 432248] [NEW] mountall is an opaque, impossible to debug binary blob instead of a debuggable set of shell scripts

2009-09-17 Thread vlowther
Public bug reported:

Binary package hint: mountall

In its current state, mountall has no usable documentation and no way to
debug it when it breaks your boot process.  If you must make mounting
filesystems fire off d-bus messages and interact with upstart, please do
it in a way that is debuggable without having to recompile and debug a
binary blob.

I currently have to rip out mountall and replace it with a shell script
that mounts all the filesystems I need and emits all the signals in
/etc/init/mountall.conf when it is done -- mountall does not play nice
with my filesystems on LVM on LUKS configuration.

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

-- 
mountall is an opaque, impossible to debug binary blob instead of a debuggable 
set of shell scripts
https://bugs.launchpad.net/bugs/432248
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 335323] Re: resume hangs late in the process appear working and yet report failure on next reboot

2009-03-27 Thread vlowther
If you want to pinpoint exactly where in the resume process it is
hanging, and you know it is after the kernel haded control back to pm-
utils, you can run pm-suspend with PM_DEBUG=true in the environment --
this will cause pm-suspend and all the hooks to be traced.

This is probably one of the hooks hanging, causing the resume process to
halt, which prevents pm-utils from releasing its lock file.

-- 
resume hangs late in the process appear working and yet report failure on next 
reboot
https://bugs.launchpad.net/bugs/335323
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 335323] Re: resume hangs late in the process appear working and yet report failure on next reboot

2009-03-27 Thread vlowther
Matt, if you can reliably reproduce the issue can you attach your
/var/log/pm-suspend.log file to this bug?

Also after rebooting, can you try running

PM_DEBUG=true pm-suspend

as root and attach the /var/log/pm-suspend.log that creates to this
report?

-- 
resume hangs late in the process appear working and yet report failure on next 
reboot
https://bugs.launchpad.net/bugs/335323
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 307493] Re: Needs file rename to conform with pm-utils

2009-03-25 Thread vlowther
** Also affects: pm-utils (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Needs file rename to conform with pm-utils
https://bugs.launchpad.net/bugs/307493
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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



[Bug 348763] Re: gdm crashes on resume from suspend

2009-03-25 Thread vlowther

** Attachment added: "log of crashing gdm"
   http://launchpadlibrarian.net/24352928/%3A0.log.1

-- 
gdm crashes on resume from suspend
https://bugs.launchpad.net/bugs/348763
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 348763] [NEW] gdm crashes on resume from suspend

2009-03-25 Thread vlowther
Public bug reported:

Binary package hint: gdm

Ubuntu Jaunty alpha 6, nvidia 180 drivers.

When waking up from suspend, instead of being greeted by a gnome-
screensaver dialog I am greeted by the login screen.  GDM appears to be
crashing on resume from suspend.

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

-- 
gdm crashes on resume from suspend
https://bugs.launchpad.net/bugs/348763
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 334168] Re: pm-is-supported crashed with SIGSEGV

2009-02-25 Thread vlowther
On Feb 25, 2009, at 10:28 AM, hyperair  wrote:

> On Wed, 2009-02-25 at 12:58 +, Chris Coulson wrote:
>> Thank you for taking the time to report this bug and helping to make
>> Ubuntu better. Please try to obtain a backtrace following the
>> instructions at http://wiki.ubuntu.com/DebuggingProgramCrash and  
>> upload
>> the backtrace (as an attachment) to the bug report. This will greatly
>> help us in tracking down your problem.
>>
>> ** Changed in: pm-utils (Ubuntu)
>>   Status: New => Incomplete
>>
>> ** Attachment removed: "CoreDump.gz"
>>
>>   http://launchpadlibrarian.net/23093480/CoreDump.gz
>>
>> ** Visibility changed to: Public
>>
> Regarding pm-is-supported, it is a shell script. How in the world  
> does a
> shell script crash with a segmentation fault?!

Maybe it triggered a bug in the shell...

>
> -- 
> Chow Loong Jin
>
> -- 
> pm-is-supported crashed with SIGSEGV
> https://bugs.launchpad.net/bugs/334168
> You received this bug notification because you are subscribed to pm-
> utils in ubuntu.

-- 
pm-is-supported crashed with SIGSEGV
https://bugs.launchpad.net/bugs/334168
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 307312] [NEW] wpasupplicant sleep action broke suspend on Jaunty

2008-12-11 Thread vlowther
On Fri, 2008-12-12 at 00:48 +, Launchpad Bug Tracker wrote:
> You have been subscribed to a public bug:
> 
> This is a brand new defect which was just introduced in the past day or
> so.  Suspend no longer works, and the following can be found in /var/log
> /pm-suspend.log:
> 
> ===
> /usr/lib/pm-utils/sleep.d/00powersave suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/01PulseAudio suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/48hid2hci suspend suspend: E: core-util.c: Home 
> directory /root not ours.
> E: pacmd.c: No PulseAudio daemon running
> not applicable.
> /usr/lib/pm-utils/sleep.d/49bluetooth suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/50ntpd suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/55NetworkManager suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/75modules suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/90chvt suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/90clock suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/94cpufreq suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/95anacron suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/95led suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/96laptop-mode suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/98smart-kernel-video suspend suspend: success.
> /usr/lib/pm-utils/sleep.d/99video suspend suspend: success.
> /etc/pm/sleep.d/action_wpa suspend suspend: action_wpa: uknown ifplugd 
> arguments: suspend suspend
> Returned exit code 1.
> Thu Dec 11 18:18:17 EST 2008: Inhibit found, will not perform suspend
> Thu Dec 11 18:18:17 EST 2008: Running hooks for resume
> ===

Please move the 95anacron and 96laptop-mode hooks out of the 90 - 99
range.  See HOWTO.hooks for the ordering convention.

Also, action_wpa should have a numeric prefix -- right now it will run
after NetworkManager has gone to sleep, interfaces possibly taken down,
and network card driver modules unloaded.  Needless to say, that might
affect the functioning of the hook.

> This was broken by a recent wpasupplicant change.  If you add
> 
> exit 0
> 
> to the top of /etc/pm/sleep.d/action_wpa (a symlink to
> /etc/wpa_supplicant/action_wpa.sh), suspend works again.
> 
> ** Affects: pm-utils (Ubuntu)
>  Importance: High
>  Assignee: Martin Pitt (pitti)
>  Status: In Progress
> 
-- 
Victor Lowther
RHCE# 805008539634727
LPIC-2# LPI000140019

-- 
wpasupplicant sleep action broke suspend on Jaunty
https://bugs.launchpad.net/bugs/307312
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 219584] Re: long first wakeup after suspend

2008-11-30 Thread vlowther
On Nov 29, 2008, at 10:32 PM, hyperair <[EMAIL PROTECTED]> wrote:

> While I don't experience this bug (never affected me to begin with),  
> I'd
> like to point out that 90clock was causing a time gap not because of  
> an
> actual lag, but because the clock was changed. Without it, if you
> suspend for 5 hours, your system clock will be behind by 5 hours. What
> that hook does is to grab the time from the hardware clock and update
> the system clock.

Only if your system is broken. Most systems should keep time just fine  
without needing to sync clocks across a suspend/resume cycle. Pm-utils  
1.2.3 will disable 90clock by default because it causes most of the  
lag when suspending.

>
> -- 
> long first wakeup after suspend
> https://bugs.launchpad.net/bugs/219584
> You received this bug notification because you are subscribed to pm-
> utils in ubuntu.

-- 
long first wakeup after suspend
https://bugs.launchpad.net/bugs/219584
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 246172] Re: Hardy : suspend and hibernate fail on resume.

2008-11-15 Thread vlowther
On Fri, 2008-11-14 at 16:05 +, link178 wrote:
> Here it goes a solution:
> 
> 1-Download ans install uswsusp and hibernate
> 2- edit this file /etc/uswsusp.conf with this content 
> 
> resume device = /dev/sda2
> splash = n
> compress = y
> early writeout = y
> RSA key file = /etc/uswsusp.key
> shutdown method e= shutdown 
> 
> Obviously, change /dev/sda2 for the partition that match your swap.
> Gparted should give you that information
> 
> 3- try it by typing "sudo s2disk". Normally appears a message showing
> the process. If it doesn't, and strange things appear don't panic and
> wait, it happens sometimes.
> 
> 4- Restart the computer and see the results. If it have worked you can
> make the changes to avoid typing s2disk everytime you want to hibernate.
> Do the following
> 
> 5- make a backup of the file we're going to modify:
> sudo cp /usr/lib/hal/scripts/linux/hal-system-power-hibernate-linux 
> /usr/lib/hal/scripts/linux/hal-system-power-hibernate-linux.bak
> 
> 6- now edit : sudo gedit /usr/lib/hal/scripts/linux/hal-system-power-
> hibernate-linux
> 
> 7- delete all the content and write this :
> #!/bin/sh
> /sbin/s2disk
> 
> 8-update the kernel with :  sudo update-initramfs -u
> 
> I hope it works, apologizes for my bad English (this is from the Spanish
> forum Ubuntu-es)

No offense, but that is a horrible solution. If you want to use uswsusp,
the following commands (as root) will do the trick:

aptitude install uswsusp
echo 'SLEEP_MODULE=uswsusp' >/etc/pm/config/sleep-module

-- 
Victor Lowther
RHCE# 805008539634727
LPIC-2# LPI000140019

-- 
Hardy : suspend and hibernate fail on resume.
https://bugs.launchpad.net/bugs/246172
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 292256] Re: backlight failed after suspend to ram on IBM X40

2008-11-11 Thread vlowther
On Nov 11, 2008, at 8:04 AM, hyperair <[EMAIL PROTECTED]> wrote:

> On Tue, 2008-11-11 at 13:46 +, vlowther wrote:
>>
>> That is what I am saying -- instead of removing the entire hook, just
>> remove the --quirk-vbe-post lines in the smart_kernel_intel function
>> of
>> the 98smart-kernel-video hook.  That will cause the hook to not  
>> remove
>> the --quirk-vbe-post quirk if it is passed to pm-utils.
> What if HAL wrongly reports that a system requires --quirk-vbe-post,
> when it doesn't? According to vbetool's manpage, it can cause
> "undefined" behaviour, whatever that means.

We can fix hal easily enough in that case.

>
> -- 
> Chow Loong Jin
>
> -- 
> backlight failed after suspend to ram on IBM X40
> https://bugs.launchpad.net/bugs/292256
> You received this bug notification because you are a direct subscriber
> of the bug.

-- 
backlight failed after suspend to ram on IBM X40
https://bugs.launchpad.net/bugs/292256
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 292256] Re: backlight failed after suspend to ram on IBM X40

2008-11-11 Thread vlowther
On Tue, 2008-11-11 at 01:51 +, hyperair wrote:
> On Mon, 2008-11-10 at 21:32 +0000, vlowther wrote:
> > Please don't remove the hook -- just edit it to not remove the quirks
> > specifically needed.
> I'm a little worried that this will cause regressions on systems where
> the --quirk-vbe-post is reported wrongly by HAL. Will that be an issue?

That is what I am saying -- instead of removing the entire hook, just
remove the --quirk-vbe-post lines in the smart_kernel_intel function of
the 98smart-kernel-video hook.  That will cause the hook to not remove
the --quirk-vbe-post quirk if it is passed to pm-utils.

> -- 
> Chow Loong Jin
> 
-- 
Victor Lowther
RHCE# 805008539634727
LPIC-2# LPI000140019

-- 
backlight failed after suspend to ram on IBM X40
https://bugs.launchpad.net/bugs/292256
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 292256] Re: backlight failed after suspend to ram on IBM X40

2008-11-10 Thread vlowther
On Sun, 2008-11-09 at 12:02 +, japi wrote:
> I have no /var/run/video.rom and couldn't find a file with that name anywhere 
> in the system.
> But why doesn't s2ram need that file?

That is only needed if you are using a g80 or later nVidia GPU.  Intel
GPUS can be posted from the regualr BIOS normally.

> > One thing I'd like to mention is that you don't have to "force" Ubuntu
> > to use s2ram, it's a choice that's made
> > here: /etc/pm/config.d/00sleep_module. Uncomment the SUSPEND_MODULE line
> > and set it to "uswsusp".
> 
> I have already tried that.
> First problem here is, that uswsusp has no s2ram in ubuntu anymore. So 
> switching to uswsusp as suspend_module has no real effect.
> 
> I bypassed this problem by installing the debian uswsusp with s2ram.
> 
> But there is a second problem:
> The setting there seems to be ignored anyway, because still everything runs 
> over "/usr/lib/hal/scripts/linux/hal-system-power-suspend-linux" in the end.
> And there is a nice comment stating: "# We only support pm-utils", which 
> seems to be true.
> Changing the line
> "/usr/sbin/pm-suspend $QUIRKS"
> into
> "/usr/sbin/s2ram --force --vbe_post"
> works nicely for me.
> 
-- 
Victor Lowther
RHCE# 805008539634727
LPIC-2# LPI000140019

-- 
backlight failed after suspend to ram on IBM X40
https://bugs.launchpad.net/bugs/292256
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 292256] Re: backlight failed after suspend to ram on IBM X40

2008-11-10 Thread vlowther
On Sun, 2008-11-09 at 23:18 +, hyperair wrote:
> On Sun, 2008-11-09 at 22:52 +, Pieter Hintjens wrote:
> > Hyperair, could you summarize what I need to do on my thinkpad x40 in
> > order to test this fix?
> > 
> Delete /usr/lib/pm-utils/sleep.d/98smart-kernel-video. It's not a "fix"
> but a temporary workaround. 

Please don't remove the hook -- just edit it to not remove the quirks
specifically needed.

> Either way the problem now is to make this
> an official fix in the pm-utils package, while not causing regressions
> to those not affected by the bug. What's your GPU, by the way? 
> -- 
> Chow Loong Jin
> 
-- 
Victor Lowther
RHCE# 805008539634727
LPIC-2# LPI000140019

-- 
backlight failed after suspend to ram on IBM X40
https://bugs.launchpad.net/bugs/292256
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 292256] Re: backlight failed after suspend to ram on IBM X40

2008-11-10 Thread vlowther
On Sun, 2008-11-09 at 23:18 +, japi wrote:
> Hm.. I don't get it...
> Why does 98smart-kernel-video remove these quirks which are "known to work"?
> (My laptop for example: it is listed in 
> /usr/share/hal/fdi/information/10freedesktop/20-video-quirk-pm-samsung.fdi 
> with the right quirk, vbe-post.
> The ibm x40 can be found in 20-video-quirk-pm-ibm.fdi...
> But regardless of that the quirks seem to be removed.)
> Am I mixing things up?

Because the i915 DRM driver in 2.6.27 should not require any quirks but
the s3 ones.  You can edit the 98smart-kernel-video hook to have it not
remove --quirk-vbe-post for Intel graphics if that helps on your system.

> Thanks,
> Jan
> 
-- 
Victor Lowther
RHCE# 805008539634727
LPIC-2# LPI000140019

-- 
backlight failed after suspend to ram on IBM X40
https://bugs.launchpad.net/bugs/292256
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 206908] Re: network-manager not does not restore wireless connection on resume

2008-10-30 Thread vlowther
On Oct 30, 2008, at 1:45 PM, carlos <[EMAIL PROTECTED]> wrote:

> yes there was a issue with intrepid RC, i add to modified one of the  
> resume
> script...

Would you mind posting the modification to this bug?

> On Thu, Oct 30, 2008 at 1:50 PM, Alexander Sack <[EMAIL PROTECTED]>  
> wrote:
>
>> is this still an issue in intrepid for you?
>>
>> ** Changed in: pm-utils (Ubuntu)
>>  Status: New => Invalid
>>
>> --
>> network-manager not does not restore wireless connection on resume
>> https://bugs.launchpad.net/bugs/206908
>> You received this bug notification because you are a direct  
>> subscriber
>> of the bug.
>>
>
> -- 
> network-manager not does not restore wireless connection on resume
> https://bugs.launchpad.net/bugs/206908
> You received this bug notification because you are subscribed to pm-
> utils in ubuntu.

-- 
network-manager not does not restore wireless connection on resume
https://bugs.launchpad.net/bugs/206908
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 268877] Re: bluetooth service does not restart after a suspend to ram

2008-10-22 Thread vlowther
On Wed, 2008-10-22 at 20:59 +, Mario Limonciello wrote:
> fix committed to bluez bzr and submitted upstream.

One other thing that might be useful would be for hcitool (or hid2hci)
to query and save the current state of the adaptors when suspending, and
then just restore the adaptors to the saved state upon resume.

> ** Changed in: bluez (Ubuntu)
>  Assignee: (unassigned) => Mario Limonciello (superm1)
>Status: Confirmed => Fix Committed
> 
-- 
Victor Lowther
RHCE# 805008539634727
LPIC-2# LPI000140019

-- 
bluetooth service does not restart after a suspend to ram
https://bugs.launchpad.net/bugs/268877
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 223770] Re: hibernate included in shutdown menu, even if it can't work.

2008-10-15 Thread vlowther
On Tue, 2008-10-14 at 17:44 +, hyperair wrote:
> Something worth noting is that depending on capacity of the swap and the
> current memory usage, whether or not there is enough free space on the
> swap to fit the total memory used can be transient. However,
> gnome-power-manager only checks (with pm-is-supported --hibernate) for
> the status of hibernate support only once, if I'm not mistaken. If it
> fails once, it does not try again.

pm-is-supported just check to see of the kernel/uswsusp/tuxonice
supports hibernation.  We don't check anything else.

> Another thing worth noting is that, supposing the user is using uswsusp,
> compression is generally used on the swap image, so it would be pretty
> hard to figure out whether it can actually the used memory can actually
> fit into the swap or not, under certain circumstances, because the
> compression ratio is unpredictable.

It is undecidable no matter what method you use because all of them will
try at hibernate time to free up enough memory to make a memory snapshot
fit in the available swap space.  On most systems, the majority of
memory is used for caching purposes and can either be flushed or thrown
away.

> As for the case of tuxonice, I have absolutely no idea about how that
> works, having never used it before.
> 
> Perhaps it might be a good idea to file this bug upstream.

It is not a bug we can fix.  The general case is undecidable.

> -- 
> Chow Loong Jin
> 
-- 
Victor Lowther
Ubuntu Certified Professional

-- 
hibernate included in shutdown menu, even if it can't work.
https://bugs.launchpad.net/bugs/223770
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 223770] [NEW] hibernate included in shutdown menu, even if it can't work.

2008-10-15 Thread vlowther
On Tue, 2008-10-14 at 17:47 +, Launchpad Bug Tracker wrote:
> You have been subscribed to a public bug:
> 
> I have a machine on which I've recently upgraded the memory.  Now the
> swap space is too small to allow hibernate to occur.  But the GNOME
> logout menu still includes the "Hibernate" option.

Unfortuantly, there is no way for pm-utils to know that is the case
without actually trying it.  Just because you have less swap space than
system memory does not mean hibernate will fail no matte the method you
use, the system will throw away memory it can load from the hard disk
elsewhere (filesystem cache and the like) if the memory will not fit in
hte amout of swap space available.  Uswsusp and the in-kernel hibernate
have to do this anyways, because the way they take a snapshot is by
freeing up half the memory and then copying the non-freed half over the
pits that got freed before writing the snapshot to swap space.

> If the machine cannot hibernate, the logout menu shouldn't include the
> option.

There is no way for pm-utils to know this in advance.  Sorry.  Might I
suggest making your swap space bigger?

> ** Affects: pm-utils (Ubuntu)
>  Importance: Wishlist
>  Status: Triaged
> 
-- 
Victor Lowther
Ubuntu Certified Professional

-- 
hibernate included in shutdown menu, even if it can't work.
https://bugs.launchpad.net/bugs/223770
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 267141] Re: suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2

2008-10-06 Thread vlowther
On Mon, 2008-10-06 at 12:16 +, James Westby wrote:
> On Mon, 2008-10-06 at 11:58 +0000, vlowther wrote:
> > If you want to look at pulling the upstream package, start with 1.2.2.1
> > -- the previous 1.2.1 and 1.2.2 releases are buggy.
> > 
> 
> Ah, I'd missed 1.2.2.1, thanks for the heads-up.

I didn't exactly go out of my way to announce it, more sort of mentinoed
it in passing on a thread on the pm-utils mailing list.  The actual
announcement will come later tonight.

> I'm not sure whether going for this is the right idea, as opposed
> to back-porting the change quoted above, because I'm not sure
> the impact the auto-quirk change will have.

Well, the whole 1.1 -> 1.2 transition is fairly large, and most of the
current debian patches will need to be rewritten or junked to work with
it.  I have been running it on my laptop since I started coding it, but
I don't have much of an idea about who else has been -- feedback on the
pm-utils list is sparse.  My real feedback and testing mostly comes from
debian sid, but the latest revisions have not been picked up by sid yet.

The auto-quirk changes are actually not that invasive -- they will not
affect anything when pm-utils is invoked bu HAL, for example, and all
the actual auto-quirk code is contained in the 00auto-quirk hook.

The auto backend stuff is much more invasive, but it was written to make
these sorts of issues harder to create.

The much more invasive thing is the hook reordering, but that will make
suspend/resume seem to be much faster due to most of the time consuming
parts of resume happening after we switch back to X or the active
console.

> Do you have any opinion on this? It's very late in the cycle
> to pull in something that could be potentially disruptive.

Well, it Works For Me (tm).

If people are willing to test things out, 1.2.2.1 will be in debian
experimental shortly, and the .deb itself should install seamlessly into
Ubuntu.

> Thanks,
> 
> James
> 
-- 
Victor Lowther
Ubuntu Certified Professional

-- 
suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2 
https://bugs.launchpad.net/bugs/267141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 267141] Re: suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2

2008-10-06 Thread vlowther
If you want to look at pulling the upstream package, start with 1.2.2.1
-- the previous 1.2.1 and 1.2.2 releases are buggy.

-- 
suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2 
https://bugs.launchpad.net/bugs/267141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 267141] Re: suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2

2008-09-08 Thread vlowther
On Tue, 2008-09-09 at 00:01 +, czk wrote:
> $ cat /var/log/pm-suspend.log 
> Initial commandline parameters: 
> Mon Sep  8 12:48:21 CST 2008: Running hooks for suspend.
> /usr/lib/pm-utils/sleep.d/00clear suspend: disabled.
> /usr/lib/pm-utils/sleep.d/05led suspend: not applicable.
> /usr/lib/pm-utils/sleep.d/10NetworkManager suspend: success.
> /usr/lib/pm-utils/sleep.d/49bluetooth suspend: not applicable.
> /usr/lib/pm-utils/sleep.d/50modules suspend: not applicable.
> /usr/lib/pm-utils/sleep.d/90clock suspend: success.
> /usr/lib/pm-utils/sleep.d/94cpufreq suspend: success.
> /usr/lib/pm-utils/sleep.d/95anacron suspend: success.
> /usr/lib/pm-utils/sleep.d/95led suspend: not applicable.
> /usr/lib/pm-utils/sleep.d/96laptop-mode suspend: success.
> /usr/lib/pm-utils/sleep.d/98smart-kernel-video suspend: success.
> /usr/lib/pm-utils/sleep.d/99video suspend: disabled.
> Mon Sep  8 12:48:22 CST 2008: performing suspend

Interesting -- when running with the kernel suspend backend, 00clear and
99video should not be disabled -- only the uswsusp module does that.
Looks like that last patch broke pm-utils in a particularly spectacular
fashion.

> 
> $ lshal |grep quirk
>   power_management.quirk.vbe_post = true  (bool)
>   power_management.quirk.vbemode_restore = true  (bool)

Can you try running pm-suspend manually by running the following command
as root and attaching the resultant /var/log/pm-suspend.log to this bug?

PM_DEBUG=true /usr/sbin/pm-suspend --quirk-vbe-post --quirk-vbemode-
restore

This will spew out tons of debugging information into the logfile and
help pinpoint exactly where pm-utils is failing.

-- 
Victor Lowther
Ubuntu Certified Professional

-- 
suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2 
https://bugs.launchpad.net/bugs/267141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 267141] Re: suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2

2008-09-08 Thread vlowther
Interesting.  Can you attach /var/log/pm-suspend.log to this bug report,
along with the output of lshal |grep quirk?

-- 
suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2 
https://bugs.launchpad.net/bugs/267141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 267141] Re: suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2

2008-09-07 Thread vlowther
A short-term workaround would be to add a file (the name does not
matter) in /etc/pm/config.d with the following line:

SLEEP_MODULE=kernel

This will tell pm-utils to use the kernel's basic functionality for
suspend and hibernate.

-- 
suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2 
https://bugs.launchpad.net/bugs/267141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 267141] Re: suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2

2008-09-07 Thread vlowther
This bug is happening because Ubuntu stopped using s2ram, and removed
the check for s2ram in the backend autodetection module but not in the
actual uswsusp backend.  Since the uswsusp backend relies on s2ram to
suspend, pm-utils claims that the system does not support suspend.

The easiest way to fix this bug would be to just use the kernel backend
and ignore uswsusp.

The second easiest way to fix this bug would be to write a new backend
that uses the kernel suspend/resume functionality but continues to use
s2disk for hibernation.

pm-utils 1.2.1 or thereabouts will have finegrained suspend method
autodetection built-in (http://cgit.freedesktop.org/pm-utils/?h=auto-
backend for the branch that will be merged into the 1.2 series of pm-
utils)

-- 
suspend button disappears after pm-utils upgraded to 1.1.2.4-1ubuntu2 
https://bugs.launchpad.net/bugs/267141
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 136737] Re: User-friendly selection of suspend method

2008-08-02 Thread vlowther
On Fri, 2008-08-01 at 10:09 +, Chris Jones wrote:
> are things like uswsusp/tuxonice even remotely supported? AIUI they have
> been rejected from the upstream kernel and the existing kernel
> suspend/hibernate paths are going to be separated and improved.

uswsusp is enirely supported in the main kernel -- Pavel and Rafael are
the suspend/resume subsystem maintainers, and uswsusp is their baby.

-- 
Victor Lowther
Ubuntu Certified Professional

-- 
User-friendly selection of suspend method
https://bugs.launchpad.net/bugs/136737
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 238189] Re: syntax error in sleep.d/99video

2008-06-07 Thread vlowther
This is already fixed upstream -- whenever Ubuntu gets around to pulling
pm-utils 1.1.2.2 (or, more likely, 1.1.2.3, which I have not released
yet), this bug will be resolved in Intrepid Ibex.

-- 
syntax error in sleep.d/99video
https://bugs.launchpad.net/bugs/238189
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 224697] Re: Disable hibernation if swap is on file

2008-06-07 Thread vlowther
Are there any instances of non wubi users having hibernation issues when
using just swapfiles, or when using swap partitions and swapfiles?

-- 
Disable hibernation if swap is on file
https://bugs.launchpad.net/bugs/224697
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-16 fails suspending

2008-05-11 Thread vlowther
Based on an experiment I ran before I started the git-bisect and found
the triggering commit, I would have to suspect the interaction between
the new IAA watchdog timer handling in ehci-hcd and the way khubd
interacts with the freezer (manually disabling processor 1 after the
first failed suspend on my box caused the sched-debug output in include
khubd as a runnable process along with pm-suspend).

But that is just a guess, and I don't have enough knowledge in that area
to test it effectivly.

-- 
kernel 2.6.24-16 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-16 fails suspending

2008-05-09 Thread vlowther

** Attachment added: "changelog entry of failing commit."
   http://launchpadlibrarian.net/14403167/bad%20commit.txt

-- 
kernel 2.6.24-16 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-16 fails suspending

2008-05-09 Thread vlowther
git-bisect on the ubuntu-hardy git repo shows that the commit that
breaks things is 978a8bed296d7f5d76c -- adding a separate IAA watchdog
timer.

Configured pm-utils to remove the ehci-hcd module, suspend/resume
started to function normally on 2.6.24-17.

-- 
kernel 2.6.24-16 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-16 fails suspending

2008-05-08 Thread vlowther
suprise! also fails on 2.6.24-17!

** Attachment added: "dmesg of failed suspend/resume"
   http://launchpadlibrarian.net/14378694/suspend-failed.log

-- 
kernel 2.6.24-16 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 220663] Re: disconnected wired ethernet disappears on resume

2008-04-27 Thread vlowther
How is your wired network interface configured when
suspending/hibernating?  There have been several instances of network
interfaces interacting badly with NetworkManager across suspend/resume
cycles when the interfaces are manually configured.

-- 
disconnected wired ethernet disappears on resume
https://bugs.launchpad.net/bugs/220663
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 217938] Re: Hardy pm-hibernate oops on Thinkpad T61p

2008-04-27 Thread vlowther
Added nvidia-kernel-common because their input will be required to
resolve issues of this sort.

-- 
Hardy pm-hibernate oops on Thinkpad T61p
https://bugs.launchpad.net/bugs/217938
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 217938] Re: Hardy pm-hibernate oops on Thinkpad T61p

2008-04-27 Thread vlowther
What happens if you use suspend as opposed to hibernate?

** Also affects: nvidia-kernel-common (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Hardy pm-hibernate oops on Thinkpad T61p
https://bugs.launchpad.net/bugs/217938
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 113187] Re: standby and hibernate works only once

2008-04-27 Thread vlowther
Hello, Matteo
Some thins that might help diagnose things are:

Getting a better description of your system,

A copy of /var/log/pm-suspend.log from when the system crashes on
hibernate/suspend, and

A segment from /var/log/messages that covers the timespan when the
system crashes on suspend/hibernate.

-- 
standby and hibernate works only once
https://bugs.launchpad.net/bugs/113187
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-16 fails suspending

2008-04-25 Thread vlowther
Added kernel team to get some visibility.  What do you need for
debugging?

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) => Canonical Kernel Team (canonical-kernel-team)

-- 
kernel 2.6.24-16 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-16 fails suspending

2008-04-25 Thread vlowther

** Summary changed:

- kernel 2.6.24-15 fails suspending
+ kernel 2.6.24-16 fails suspending

** Description changed:

- After upgrading to kernel 2.6.14-15 in latest Hardy, suspend/resume
- fails.  Debugging shows that g-p-m, hal, and pm-utils are doing the
- right thing, and dmesg is filled wiith process information (failing
- dmesg attached).  Banal system information:
+ After upgrading to Hardy release, suspend/resume works once, then the
+ system fails to suspend until it is rebooted.  Debugging shows that
+ g-p-m, hal, and pm-utils are doing the right thing, and dmesg is filled
+ wiith process information (failing dmesg attached).
  
- uname -a: Linux sentry-no 2.6.24-15-generic #1 SMP Fri Apr 4 03:48:31
- UTC 2008 i686 GNU/Linux
+ System is a Dell Latitude D820.
  
- Dell Latitude D820
+ If I reboot back into 2.6.24-12 using the same userspace (Hardy release
+ in this case) suspend and resume works normally.

** Attachment added: "Segment of /var/log/messages showing the anamolous 
suspend.resume behaviour."
   http://launchpadlibrarian.net/13920772/suspend-failed.log

-- 
kernel 2.6.24-16 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-13 Thread vlowther
Same issue also happens with 2.6.24-16

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 208195] Re: Hardy doesn't re-enable ndiswrapper's wifi after suspension

2008-04-10 Thread vlowther
Adding ndiswrapper so that they can recommend best practices for pm-
utils hooks.

-- 
Hardy doesn't re-enable ndiswrapper's wifi after suspension
https://bugs.launchpad.net/bugs/208195
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 208195] Re: Hardy doesn't re-enable ndiswrapper's wifi after suspension

2008-04-10 Thread vlowther
No longer valid for acpi

** Changed in: acpi (Ubuntu)
   Status: New => Invalid

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

-- 
Hardy doesn't re-enable ndiswrapper's wifi after suspension
https://bugs.launchpad.net/bugs/208195
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 208792] Re: pm-utils doesn't call anacron

2008-04-10 Thread vlowther
adding anacron so they can see if a pm-utils hook needs to be written.

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

-- 
pm-utils doesn't call anacron
https://bugs.launchpad.net/bugs/208792
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 206908] Re: network-manager not does not restore wreless connection on resum

2008-04-10 Thread vlowther
Added network-manager package for greater visibility and because they
should have more input as to what pm-utiuls needs to do to make
networking work better over suspend/resume.

** Also affects: network-manager (Ubuntu)
   Importance: Undecided
   Status: New

-- 
network-manager not does not restore wreless connection on resum
https://bugs.launchpad.net/bugs/206908
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 211336] Re: hibernate (works) but does not power down system

2008-04-10 Thread vlowther
wrong package.

** Also affects: network-manager (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: network-manager (Ubuntu)
   Status: New => Invalid

-- 
hibernate (works) but does not power down system
https://bugs.launchpad.net/bugs/211336
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-06 Thread vlowther
er, make that 2.6.24-12.

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-05 Thread vlowther
2.6.14-12 functions normally.

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-05 Thread vlowther
** Changed in: linux (Ubuntu)
Sourcepackagename: None => linux

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-05 Thread vlowther

** Attachment added: "loaded modules"
   http://launchpadlibrarian.net/13143158/modules.log

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-05 Thread vlowther

** Attachment added: "dmi info"
   http://launchpadlibrarian.net/13143147/dmidecode.log

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-05 Thread vlowther

** Attachment added: "lspci -vv"
   http://launchpadlibrarian.net/13143136/lspci.log

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] Re: kernel 2.6.24-15 fails suspending

2008-04-05 Thread vlowther

** Attachment added: "failing suspend/resume"
   http://launchpadlibrarian.net/13143124/failed-suspend-messages.log

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 212660] [NEW] kernel 2.6.24-15 fails suspending

2008-04-05 Thread vlowther
Public bug reported:

After upgrading to kernel 2.6.14-15 in latest Hardy, suspend/resume
fails.  Debugging shows that g-p-m, hal, and pm-utils are doing the
right thing, and dmesg is filled wiith process information (failing
dmesg attached).  Banal system information:

uname -a: Linux sentry-no 2.6.24-15-generic #1 SMP Fri Apr 4 03:48:31
UTC 2008 i686 GNU/Linux

Dell Latitude D820

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

-- 
kernel 2.6.24-15 fails suspending
https://bugs.launchpad.net/bugs/212660
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 210832] Re: pm-suspend.log reports "power-pmu: failed to open /dev/pmu"

2008-04-05 Thread vlowther
Sorry, but that is not a pm-utils error message.  At a guess, I would
say that it is a gnome-power-manager error.  You should probably file
that issue against g-p-m

-- 
pm-suspend.log reports "power-pmu: failed to open /dev/pmu"
https://bugs.launchpad.net/bugs/210832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 210832] Re: pm-suspend.log reports "power-pmu: failed to open /dev/pmu"

2008-04-04 Thread vlowther
This is a popup that is happening on the desktop, I presume?

Can you attach the text of the popup to this bug?

-- 
pm-suspend.log reports "power-pmu: failed to open /dev/pmu"
https://bugs.launchpad.net/bugs/210832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 210832] Re: pm-suspend.log reports "power-pmu: failed to open /dev/pmu"

2008-04-03 Thread vlowther
Yeah, whatever patch went into that update was obviously not tested
before being pushed out.

Change that "!grep"  to "! grep" and it will Do The Right Thing.

Or delete that whole if clause and replace it with

grep -q fglrx /proc/modules || chvt 1

which is easier to read and not susceptible to spacing errors in the
future.

-- 
pm-suspend.log reports "power-pmu: failed to open /dev/pmu"
https://bugs.launchpad.net/bugs/210832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 210832] Re: pm-suspend.log reports "power-pmu: failed to open /dev/pmu"

2008-04-02 Thread vlowther
Forgot to note that the patch applies to /usr/lib/pm-utils/functions

-- 
pm-suspend.log reports "power-pmu: failed to open /dev/pmu"
https://bugs.launchpad.net/bugs/210832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 210832] Re: pm-suspend.log reports "power-pmu: failed to open /dev/pmu"

2008-04-02 Thread vlowther
Yeah, your system should not even be trying to invoke pm-pmu (I assume
that is what you meant -- afaik, there is no power-pmu command), but for
whatever reason the binary seems to be installed on your system.

The attached patch should work around it.

Could you also attach the output of the following commands to this bug report?
dpkg-query -S pm-pmu

** Attachment added: "Better pm-pmu checking."
   http://launchpadlibrarian.net/13079595/pm-pmu.patch

-- 
pm-suspend.log reports "power-pmu: failed to open /dev/pmu"
https://bugs.launchpad.net/bugs/210832
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 135886] Re: Pidgin should refresh active accounts after coming back from suspend/hibernate

2008-04-02 Thread vlowther
This is very pidgin specific, and should not be added to pm-utils.
Adding it to the pidgin package would be the best course of action.

-- 
Pidgin should refresh active accounts after coming back from suspend/hibernate
https://bugs.launchpad.net/bugs/135886
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 208259] Re: Ubuntu 8.04 don't resume from hibernate with nvidia GPU's

2008-03-28 Thread vlowther
Hibernate/resume support with nvidia gpus and the nvidia binary drivers
is rather touchy.  Sadly, the workaround described for Suspend2 will
only work when using suspend2 (aka tuxonice), and Ubuntu does not ship a
kernel with the tuxonice patches.  I would be interested in taking a
look at your /var/log/pm-suspend.log after a failed hibernate/resume
(just to see if there is something obvious) but there are no guarantees
that we can make hibernate work.

-- 
Ubuntu 8.04 don't resume from hibernate with nvidia GPU's
https://bugs.launchpad.net/bugs/208259
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-25 Thread vlowther
Yes.  The default in pm-utils is to not touch the video card across a
hibernate/resume cycle, but you can tell pm-utils to use the quirks
passed from HAL. We may as well not break expected behaviour for those
who do need to use quirks when hibernating.

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-24 Thread vlowther
The patch applied to the HAL suspend script should also be applied to
the HAL hibernate and HAL suspend-hybrid scripts.

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 205224] Re: power management: put display to sleep not functional after latest pm-utils and hal updates

2008-03-23 Thread vlowther
re: comment 3

In that case, it is not a pm-utils issue -- pm-utils only gets involved
when suspending (or hibernating) a system.  Sorry. :)

** Changed in: pm-utils (Ubuntu)
   Status: New => Invalid

-- 
power management: put display to sleep not functional after latest pm-utils and 
hal updates
https://bugs.launchpad.net/bugs/205224
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 162652] Re: pm-utils changes default cpu policy after resuming from suspend-to-ram

2008-03-23 Thread vlowther
This patch will fix it.

Cpus that share cpufreq settings have their cpufreq settings symlinked
together.  What is happening is that we are saving several conflicting
cpufreq settings (depending on the number of cores that share the same
settings).  The first time settings are saved for a given cpu group the
correct ones are saved, the ones after that are all userspace.  If the
order in which the settings are restored are not the exact opposite, we
will get the settings wrong.

The easiest way to avoid the whole situation is to skip any cores that
are symlinked when saving settings.  Their settings will be restored
correctly when we restore the settings for whatever non-symlinked core
they are grouped with.

** Attachment added: "fix saving incorrect cpufreq settings."
   http://launchpadlibrarian.net/12827304/fix-94cpufreq-in-pm-utils.patch

-- 
pm-utils changes default cpu policy after resuming from suspend-to-ram
https://bugs.launchpad.net/bugs/162652
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 162652] Re: pm-utils changes default cpu policy after resuming from suspend-to-ram

2008-03-23 Thread vlowther
it would have been if I hadn't have reversed the logic and the patch. :(

Updated patch attached.

** Attachment added: "fix-94cpufreq-in-pm-utils.patch"
   http://launchpadlibrarian.net/12827339/fix-94cpufreq-in-pm-utils.patch

-- 
pm-utils changes default cpu policy after resuming from suspend-to-ram
https://bugs.launchpad.net/bugs/162652
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 180378] Re: nvidia-kernel-common needs to intergrate with new pm-utils framework

2008-03-22 Thread vlowther
It will be solved by https://bugs.launchpad.net/ubuntu/+source/pm-
utils/+bug/198808.  Hopefully. :)

That ifx is not as elegant as mine, but it will work.

-- 
nvidia-kernel-common needs to intergrate with new pm-utils framework
https://bugs.launchpad.net/bugs/180378
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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



[Bug 205224] Re: power management: put display to sleep not functional after latest pm-utils and hal updates

2008-03-22 Thread vlowther
Dies this issue happen while you are trying to suspend the system, or
only when trying to put the display to sleep?

-- 
power management: put display to sleep not functional after latest pm-utils and 
hal updates
https://bugs.launchpad.net/bugs/205224
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-21 Thread vlowther
(re comment #27)
That sounds like it should be a new bug.

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-21 Thread vlowther
The fix as published is incomplete.  If you are ignoring quirks while
resuming, you should ignore them while suspending.

** Changed in: pm-utils (Ubuntu)
   Status: Fix Released => In Progress

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-21 Thread vlowther
The fix applied in pm-utils is incomplete.  You should also ignore quirks while 
suspending the system if you are going to ignore them when resuming. 
The following code block also needs to be applied to the 20video file at the 
beginning of the suspend_video function:

++if [ -d /sys/module/nvidia ] || [ -d /sys/module/fglrx ] || \
++[ -d /sys/module/i915 ]; then
++return
++fi
++

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-21 Thread vlowther
(re comment # 19)

If it's crazy debugging features you want, and you are comfortable
running bleeding-edge code, I maintain a .deb of the pm-utils
development series @ http://fnordovax.org/~victor/PmUtils/

But yes, in an ideal world HAL would handle finding the right quirks and
inform pm-utils to use just the ones it determines are needed.

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-20 Thread vlowther
(re: comment no. 14)

For the short term, having these quirk workarounds as part of pm-utils
is doable.

Longer term, though, there are two goals to work towards:

1) Make HAL fdi rules flexible enough to deal with things besides system
mfgr/make/model when deciding what quirks to apply.  At a minimum it
should also be able to consider the current video device(s) and the
driver(s), as they are arguable more important than the system model
(especially if we start caring about desktops with their easily-replaced
video cards).  This will probably involve replacing the current key
matching scheme with something a but more complex.

2) If piece of software requires special handling to operate correctly
across a suspend/resume cycle, it should be responsible for providing
the hook, not pm-utils.

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-20 Thread vlowther
The output of lshal |grep quirk will tell you if hal knows of any quirks
that should be applied to your system.

Also, the outputs of lsmod and a copy of /var/log/pm-suspend.log (if it
exists) would come in handy.

You can also try the workaround I used in bug# 180378 (download the 99
-non-free-nvidia file, save it /etc/pm/config.d, and change the first
line to grep for fglrx instead of nvidia)

Then, once you find a combination of quirks that work (probably the
default of no quirks should be used), you can save them in that file.

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-20 Thread vlowther
To do (#3) with the current ubuntu pm-utils, you should arrange for the
appropriate driver package to drop a file in /etc/pm/config.d.  Bug#
180378 has the solution I used to use for my system.

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198808] Re: [Hardy] HAL breaks pm-utils quirks and resuming

2008-03-17 Thread vlowther
Confirmed while doing development on pm-utils:

On my system:

lshal |grep quirk ->  power_management.quirk.vbestate_restore = true
(bool)

However, pm-suspend is  called with the following parameters:
 --quirk-dpms-on --quirk-vbestate-restore --quirk-vbemode-restore 
--quirk-vga-mode3 --quirk-vbe-post --quirk-reset-brightness

It should only called with --quirk-vbestate-restore.

** Changed in: gnome-power-manager (Ubuntu)
   Status: Invalid => Confirmed

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

-- 
[Hardy] HAL breaks pm-utils quirks and resuming
https://bugs.launchpad.net/bugs/198808
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198971] Re: [Hardy] Wireless broken with latests updates

2008-03-05 Thread vlowther
nm failing to talk to supplicant.  Network is open.

** Attachment added: "var-log-daemon.log"
   http://launchpadlibrarian.net/12454016/var-log-daemon.log

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

-- 
[Hardy] Wireless broken with latests updates
https://bugs.launchpad.net/bugs/198971
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 198971] Re: [Hardy] Wireless broken with latests updates

2008-03-05 Thread vlowther
I see this error on my system as well.  Relavent part of
/var/log/daemon.log attached.

** Changed in: network-manager (Ubuntu)
   Status: New => Confirmed

-- 
[Hardy] Wireless broken with latests updates
https://bugs.launchpad.net/bugs/198971
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 191791] Re: Firefox-3.0 zoomed images and webpages

2008-02-16 Thread vlowther
This bug also affects me.  Laptop system, running at 15 inch widescreen
running at 1920x1200, dpi 148x145.

FF3 will be too annoying to use until this bug is fixed for me.  I have
no interest in lowering the DPI, because it makes most things unreadable
unless absurd font sizes are used.

-- 
Firefox-3.0 zoomed images and webpages
https://bugs.launchpad.net/bugs/191791
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 162654] Re: networkmanager (0.6.5-0ubuntu16.7.10.0) needs to be restarted manually after suspend using pm-utils, while functioning correctly using acpi

2008-02-10 Thread vlowther
xhienne: because /usr/lib/pm-utils/defaults is not intended to be
changed by end users, it is inteded to be changed by distribution
maintainers.

End users should drop config files in /etc/pm/config.d -- any changes
made in these files will override ones made in /usr/lib/pm-
utils/defaults

-- 
networkmanager (0.6.5-0ubuntu16.7.10.0) needs to be restarted manually after 
suspend using pm-utils, while functioning correctly using acpi
https://bugs.launchpad.net/bugs/162654
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 190679] [NEW] Most recent package update breaks loading /etc/pm/config.d/*

2008-02-10 Thread vlowther
Public bug reported:

Binary package hint: pm-utils

There is a tyop in /usr/lib/pm-utils/functions: (most recent Hardy as of Feb 10 
2008)
 source_configs()
 {
 cfgs="/etc/pm/config.d/*[^~]"
 for cfg in $cfgs ; do
- [ -f $cfgs ] || continue 
+   [ -f $cfg ] || continue
 set -a
 . $cfg
 set +a
 done
 }

This breaks the workaround I use get suspend/resume functioning
correctly with the nvidia binary kernel module.

** Affects: pm-utils (Ubuntu)
 Importance: Undecided
 Assignee: Matthew Garrett (mjg59)
 Status: Confirmed

** Changed in: pm-utils (Ubuntu)
 Assignee: (unassigned) => Matthew Garrett (mjg59)
   Status: New => Confirmed

-- 
Most recent package update breaks loading /etc/pm/config.d/*
https://bugs.launchpad.net/bugs/190679
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180378] Re: nvidia-kernel-common needs to intergrate with new pm-utils framework

2008-02-10 Thread vlowther
bug has been idle for awhile... needs some action

** Changed in: pm-utils (Ubuntu)
 Assignee: (unassigned) => Matthew Garrett (mjg59)
   Status: New => Confirmed

-- 
nvidia-kernel-common needs to intergrate with new pm-utils framework
https://bugs.launchpad.net/bugs/180378
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180378] Re: nvidia-kernel-common needs to intergrate with new pm-utils framework

2008-01-07 Thread vlowther
** Summary changed:

- nvidia-kernel-common needs to intergrate with new pm-tools framework
+ nvidia-kernel-common needs to intergrate with new pm-utils framework

-- 
nvidia-kernel-common needs to intergrate with new pm-utils framework
https://bugs.launchpad.net/bugs/180378
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180432] Re: deskbar-applet crashed with AttributeError in get_name()

2008-01-04 Thread vlowther

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/11158370/Dependencies.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/11158371/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/11158372/ProcStatus.txt

** Attachment added: "Traceback.txt"
   http://launchpadlibrarian.net/11158373/Traceback.txt

** Visibility changed to: Public

-- 
deskbar-applet crashed with AttributeError in get_name()
https://bugs.launchpad.net/bugs/180432
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180432] deskbar-applet crashed with AttributeError in get_name()

2008-01-04 Thread vlowther
Public bug reported:

Binary package hint: deskbar-applet

Happens whenever I load Deskbar, eithe from the commandline (with
/usr/lib/deskbar-applet/deskbar-applet) or from the Add to Panel dialog.

ProblemType: Crash
Architecture: i386
Date: Fri Jan  4 15:21:01 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/lib/deskbar-applet/deskbar-applet
InterpreterPath: /usr/bin/python2.5
NonfreeKernelModules: nvidia
Package: deskbar-applet 2.21.4-0ubuntu1
PackageArchitecture: i386
ProcCmdline: /usr/bin/python /usr/lib/deskbar-applet/deskbar-applet -w
ProcCwd: /home/victor
ProcEnviron:
 SHELL=/bin/bash
 
PATH=/home/victor/progs/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/games/bin
 LANG=en_US.UTF-8
PythonArgs: ['/usr/lib/deskbar-applet/deskbar-applet', '-w']
SourcePackage: deskbar-applet
Title: deskbar-applet crashed with AttributeError in get_name()
Uname: Linux sentry-no 2.6.24-2-generic #1 SMP Thu Dec 20 17:36:12 GMT 2007 
i686 GNU/Linux
UserGroups: adm admin audio cdrom dialout dip fax floppy fuse lpadmin netdev 
plugdev powerdev pulse-access scanner video

** Affects: deskbar-applet (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-crash need-duplicate-check

-- 
deskbar-applet crashed with AttributeError in get_name()
https://bugs.launchpad.net/bugs/180432
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180378] Re: nvidia-kernel-common needs to intergrate with new pm-tools framework

2008-01-04 Thread vlowther
if the new pm-utils framework is being used, add this file to
/etc/pm/config.d/

** Attachment added: "99-non-free-nvidia"
   http://launchpadlibrarian.net/11154731/99non-free-nvidia

** Also affects: pm-utils (Ubuntu)
   Importance: Undecided
   Status: New

-- 
nvidia-kernel-common needs to intergrate with new pm-tools framework
https://bugs.launchpad.net/bugs/180378
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180378] nvidia-kernel-common needs to intergrate with new pm-tools framework

2008-01-04 Thread vlowther
Public bug reported:

Binary package hint: nvidia-kernel-common

On my Dell Latitide D820 with an nVidia GeForce Go 7400, recent versions
of Hardy do not intergrate with the pm-utils framework, which leads to
crashes on resume when the new pm scripts try to POST the card using the
VBE tools.  The workaround I have is to create /etc/pm/config.d/99-non-
free-nvidia which contains the needed configuration settings to prevent
the pm-utils framework from touching the card on suspend/resume.  None
of the VBE posting, state save/restore/ or modesetting is needed because
the nVidia kernel driver handles it natively.

** Affects: nvidia-kernel-common (Ubuntu)
 Importance: Undecided
 Status: New

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

-- 
nvidia-kernel-common needs to intergrate with new pm-tools framework
https://bugs.launchpad.net/bugs/180378
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180250] Re: system fails to resume in Hardy with non-free nvidia driver

2008-01-04 Thread vlowther
*** This bug is a duplicate of bug 180378 ***
https://bugs.launchpad.net/bugs/180378

better fix reported in bug #180378

** This bug has been marked a duplicate of bug 180378
   nvidia-kernel-common needs to intergrate with new pm-tools framework

-- 
system fails to resume in Hardy with non-free nvidia driver
https://bugs.launchpad.net/bugs/180250
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180250] Re: system fails to resume in Hardy with non-free nvidia driver

2008-01-03 Thread vlowther
Patch to /usr/lib/hal/scripts/linux/hal-system-power-suspend-linux to
fix the issue I was encountering attached:

** Attachment added: "let the nvidia kernel module handle video state if it is 
loaded"
   http://launchpadlibrarian.net/11143517/hal-system-power-suspend-linux.patch

-- 
system fails to resume in Hardy with non-free nvidia driver
https://bugs.launchpad.net/bugs/180250
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 180250] system fails to resume in Hardy with non-free nvidia driver

2008-01-03 Thread vlowther
Public bug reported:

Binary package hint: hal

On a system with Hardy and the non-free nvidia driver, initiate a
suspend/resume cycle.  On my system, it fails to resume from suspend.
In Edgy and Feisty, in order to make things work I edited the
/etc/defaults/acpi-support to disallow vbetool and friends from touching
the video chipset, but those changes are not being imported by the new
pm-utils framework.

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

-- 
system fails to resume in Hardy with non-free nvidia driver
https://bugs.launchpad.net/bugs/180250
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 178469] pulseaudio stops working after suspend/resume cycle

2007-12-24 Thread vlowther
Public bug reported:

Binary package hint: pulseaudio

After an apt-get dist-upgrade from Gutsy to Hardy, pulseaudio running in
systemwide daemon mode no longer functions correctly after a
suspend/resume cycle.  Temporary workaround is to add pulseaudio to the
STOP_SERVICES line in /etc/default/acpi-support.  Attached are my pulse
configuration files.

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

-- 
pulseaudio stops working after suspend/resume cycle
https://bugs.launchpad.net/bugs/178469
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 178469] Re: pulseaudio stops working after suspend/resume cycle

2007-12-24 Thread vlowther

** Attachment added: "client.conf"
   http://launchpadlibrarian.net/11055179/client.conf

-- 
pulseaudio stops working after suspend/resume cycle
https://bugs.launchpad.net/bugs/178469
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 178469] Re: pulseaudio stops working after suspend/resume cycle

2007-12-24 Thread vlowther

** Attachment added: "daemon.conf"
   http://launchpadlibrarian.net/11055178/daemon.conf

-- 
pulseaudio stops working after suspend/resume cycle
https://bugs.launchpad.net/bugs/178469
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


  1   2   >