[Bug 1030561] Re: Ubuntu 12 need to login twice.

2012-07-29 Thread Mark Pupilli
I don't know if this is the correct package.

** Package changed: ubuntu => gnome-session (Ubuntu)

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

Title:
  Ubuntu 12 need to login twice.

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

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


[Bug 1030561] [NEW] Ubuntu 12 need to login twice.

2012-07-29 Thread Mark Pupilli
Public bug reported:

I am using Ubuntu 12:

3.2.0-27-generic #43-Ubuntu SMP Fri Jul 6 14:25:57 UTC 2012 x86_64
x86_64 x86_64 GNU/Linux

Since the last kernel upgrade I have to login twice as after the first
login the screen goes blank and returns me to the graphical login
screen. Never had this problem before.

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: login ubuntu xsession

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

Title:
  Ubuntu 12 need to login twice.

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

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


[Bug 1030561] Re: Ubuntu 12 need to login twice.

2012-07-29 Thread Mark Pupilli
** Attachment added: "log files"
   
https://bugs.launchpad.net/bugs/1030561/+attachment/3241125/+files/xsession-errors

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

Title:
  Ubuntu 12 need to login twice.

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

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


[Bug 522978] Re: Display corrupted after console switch or logout with Quadro FX 880M

2012-04-07 Thread Mark Pupilli
I have an Nvidia GTX460 graphics card and have the most up to date
version of Ubuntu Natty and have a similar problem: after selecting
logout from GUI menu the system returns to the main login screen but the
whole screen is corrupted with coloured noise making it impossible to
read text or use the GUI.

System info:

Nvidia driver version: 280.13

GeForce GTX 460, VBIOS VERSION 70.04.3a.00.00

Linux puppypc 3.0.0-17-generic #30-Ubuntu SMP Thu Mar 8 20:45:39 UTC
2012 x86_64 x86_64 x86_64 GNU/Linux

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

Title:
  Display corrupted after console switch or logout with Quadro FX 880M

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/522978/+subscriptions

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


[Bug 762203] Re: Computer is not turned off at shutdown

2011-11-09 Thread Mark Pupilli
Since doing a regular system update today Ubuntu 11.10 has started
hanging on shutdown in 'checking for unattended upgrades'. Ctrl-alt-del
causes it to skip this but then it still does not shutdown. Very
annoying as it was working fine before. I don't know what got updated
today, is there a way to look at the update history?

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

Title:
  Computer is not turned off at shutdown

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

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


[Bug 483594] [NEW] timer_create and timer_delete cause valgrind errors

2009-11-16 Thread Mark Pupilli
Public bug reported:

Using timer_create/timer_delete causes an untold number of valgrind
errors in programs which use timers heavily.

glibc 2.9-4
Linux 2.6.28-15-generic #52-Ubuntu SMP Wed Sep 9 10:49:34 UTC 2009 i686 
GNU/Linux
Ubuntu 9.04

Some of the errors may be attributable to this bug:
https://bugs.launchpad.net/bugs/264868

However, the following is the minimal program for generating valgrind
errors using timer_create/delete and doesn't even start the timer so is
not attributable to the above bug. The error occurs whether the timer is
started or not.

#include 
#include 
#include 
#include 

void callback( sigval_t parameter )
{
}

int main( int argc, char** argv )
{
sigevent_t se;
memset( &se, 0 , sizeof(se) ); // just to be sure all of se is initialised
se.sigev_notify = SIGEV_THREAD;
se.sigev_value.sival_ptr = 0; 
se.sigev_notify_function = callback;
se.sigev_notify_attributes = 0;

timer_t t;
int err = timer_create( CLOCK_MONOTONIC, &se, &t );
assert( err != -1 );
timer_delete( t );

return 0;
}

When compiled using 'gcc -g main.c -lrt' this will produce the following
valgrind output:

$ valgrind --track-origins=yes --leak-check=full ./a.out 
==11225== Memcheck, a memory error detector.
==11225== Copyright (C) 2002-2008, and GNU GPL'd, by Julian Seward et al.
==11225== Using LibVEX rev 1884, a library for dynamic binary translation.
==11225== Copyright (C) 2004-2008, and GNU GPL'd, by OpenWorks LLP.
==11225== Using valgrind-3.4.1-Debian, a dynamic binary instrumentation 
framework.
==11225== Copyright (C) 2000-2008, and GNU GPL'd, by Julian Seward et al.
==11225== For more details, rerun with: -v
==11225== 
==11225== Conditional jump or move depends on uninitialised value(s)
==11225==at 0x40454D4: timer_delete (in /lib/tls/i686/cmov/librt-2.9.so)
==11225==by 0x8048527: main (main.c:22)
==11225==  Uninitialised value was created by a heap allocation
==11225==at 0x4026FDE: malloc (vg_replace_malloc.c:207)
==11225==by 0x404534E: timer_create (in /lib/tls/i686/cmov/librt-2.9.so)
==11225==by 0x80484EF: main (main.c:20)
==11225== 
==11225== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 15 from 1)
==11225== malloc/free: in use at exit: 136 bytes in 1 blocks.
==11225== malloc/free: 2 allocs, 1 frees, 192 bytes allocated.
==11225== For counts of detected errors, rerun with: -v
==11225== searching for pointers to 1 not-freed blocks.
==11225== checked 84,192 bytes.
==11225== 
==11225== 
==11225== 136 bytes in 1 blocks are possibly lost in loss record 1 of 1
==11225==at 0x4025092: calloc (vg_replace_malloc.c:397)
==11225==by 0x401134B: _dl_allocate_tls (in /lib/ld-2.9.so)
==11225==by 0x41B3672: pthread_create@@GLIBC_2.1 (in 
/lib/tls/i686/cmov/libpthread-2.9.so)
==11225==by 0x4046501: (within /lib/tls/i686/cmov/librt-2.9.so)
==11225==by 0x41B95CF: pthread_once (in 
/lib/tls/i686/cmov/libpthread-2.9.so)
==11225==by 0x80484EF: main (main.c:20)
==11225== 
==11225== LEAK SUMMARY:
==11225==definitely lost: 0 bytes in 0 blocks.
==11225==  possibly lost: 136 bytes in 1 blocks.
==11225==still reachable: 0 bytes in 0 blocks.
==11225== suppressed: 0 bytes in 0 blocks.

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

-- 
timer_create and timer_delete cause valgrind errors
https://bugs.launchpad.net/bugs/483594
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