Processed: tagging 637239

2011-12-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 637239 + pending
Bug #637239 {Done: Aurelien Jarno aure...@debian.org} [libc6] libc6: Broken 
thread local storage (TLS) initialization
Bug #647896 {Done: Aurelien Jarno aure...@debian.org} [libc6] regression (?): 
libc6: Broken thread local storage (TLS) initialization
Added tag(s) pending.
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
637239: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=637239
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.132377131021754.transcr...@bugs.debian.org



r5077 - in glibc-package/branches/glibc-branch-squeeze/debian: . patches/any

2011-12-13 Thread Aurelien Jarno
Author: aurel32
Date: 2011-12-13 10:14:56 + (Tue, 13 Dec 2011)
New Revision: 5077

Added:
   
glibc-package/branches/glibc-branch-squeeze/debian/patches/any/cvs-dlopen-tls.diff
Modified:
   glibc-package/branches/glibc-branch-squeeze/debian/changelog
Log:
  * patches/any/cvs-dlopen-tls.diff:  fix handling of static TLS in
dlopen'ed objects.  Closes: #637239.



Modified: glibc-package/branches/glibc-branch-squeeze/debian/changelog
===
--- glibc-package/branches/glibc-branch-squeeze/debian/changelog
2011-12-12 23:10:21 UTC (rev 5076)
+++ glibc-package/branches/glibc-branch-squeeze/debian/changelog
2011-12-13 10:14:56 UTC (rev 5077)
@@ -55,6 +55,8 @@
   * patches/any/cvs-statvfs-mount-flags.diff: get the mount flags directly
 from the kernel when possible instead of parsing /proc/mounts.  Closes: 
 #639897.
+  * patches/any/cvs-dlopen-tls.diff:  fix handling of static TLS in
+dlopen'ed objects.  Closes: #637239.
 
  -- Aurelien Jarno aure...@debian.org  Sat, 11 Jun 2011 18:12:35 +0200
 

Added: 
glibc-package/branches/glibc-branch-squeeze/debian/patches/any/cvs-dlopen-tls.diff
===
--- 
glibc-package/branches/glibc-branch-squeeze/debian/patches/any/cvs-dlopen-tls.diff
  (rev 0)
+++ 
glibc-package/branches/glibc-branch-squeeze/debian/patches/any/cvs-dlopen-tls.diff
  2011-12-13 10:14:56 UTC (rev 5077)
@@ -0,0 +1,93 @@
+2011-05-14  Ulrich Drepper  drep...@gmail.com
+
+   [BZ #12453]
+   * elf/dl-open.c (dl_open_worker): Delay calls to _dl_update_slotinfo
+   until all modules are registered in the DTV.
+   Patch mostly by Martin von Gagern martin.vgag...@gmx.net.
+
+--- a/elf/dl-open.c
 b/elf/dl-open.c
+@@ -347,6 +347,7 @@ dl_open_worker (void *a)
+   /* If the file is not loaded now as a dependency, add the search
+  list of the newly loaded object to the scope.  */
+   bool any_tls = false;
++  unsigned int first_static_tls = new-l_searchlist.r_nlist;
+   for (unsigned int i = 0; i  new-l_searchlist.r_nlist; ++i)
+ {
+   struct link_map *imap = new-l_searchlist.r_list[i];
+@@ -425,30 +426,9 @@ dl_open_worker (void *a)
+might have to increase its size.  */
+ _dl_add_to_slotinfo (imap);
+ 
+-if (imap-l_need_tls_init)
+-  {
+-/* For static TLS we have to allocate the memory here
+-   and now.  This includes allocating memory in the DTV.
+-   But we cannot change any DTV other than our own. So,
+-   if we cannot guarantee that there is room in the DTV
+-   we don't even try it and fail the load.
+-
+-   XXX We could track the minimum DTV slots allocated in
+-   all threads.  */
+-if (! RTLD_SINGLE_THREAD_P  imap-l_tls_modid  DTV_SURPLUS)
+-  _dl_signal_error (0, dlopen, NULL, N_(\
+-cannot load any more object with static TLS));
+-
+-imap-l_need_tls_init = 0;
+-#ifdef SHARED
+-/* Update the slot information data for at least the
+-   generation of the DSO we are allocating data for.  */
+-_dl_update_slotinfo (imap-l_tls_modid);
+-#endif
+-
+-GL(dl_init_static_tls) (imap);
+-assert (imap-l_need_tls_init == 0);
+-  }
++if (imap-l_need_tls_init
++ first_static_tls == new-l_searchlist.r_nlist)
++  first_static_tls = i;
+ 
+ /* We have to bump the generation counter.  */
+ any_tls = true;
+@@ -460,6 +440,40 @@ cannot load any more object with static TLS));
+ _dl_fatal_printf (N_(\
+ TLS generation counter wrapped!  Please report this.));
+ 
++  /* We need a second pass for static tls data, because _dl_update_slotinfo
++ must not be run while calls to _dl_add_to_slotinfo are still pending. */
++  for (unsigned int i = first_static_tls; i  new-l_searchlist.r_nlist; ++i)
++{
++  struct link_map *imap = new-l_searchlist.r_list[i];
++
++  if (imap-l_need_tls_init
++ ! imap-l_init_called
++ imap-l_tls_blocksize  0)
++  {
++/* For static TLS we have to allocate the memory here and
++   now.  This includes allocating memory in the DTV.  But we
++   cannot change any DTV other than our own. So, if we
++   cannot guarantee that there is room in the DTV we don't
++   even try it and fail the load.
++
++   XXX We could track the minimum DTV slots allocated in
++   all threads.  */
++if (! RTLD_SINGLE_THREAD_P  imap-l_tls_modid  DTV_SURPLUS)
++  _dl_signal_error (0, dlopen, NULL, N_(\
++cannot load any more object with static TLS));
++
++imap-l_need_tls_init = 0;
++#ifdef SHARED
++/* Update the slot information data for at least the
++   generation of the DSO we are allocating data for.  */
++

Re: Cross Memory Attach v3

2011-12-13 Thread Aurelien Jarno
On Sun, Dec 11, 2011 at 10:11:03PM +, Thorsten Glaser wrote:
 Andreas Schwab dixit:
 
 Thorsten Glaser t...@mirbsd.de writes:
 
  Index: eglibc-2.13/ports/sysdeps/unix/sysv/linux/m68k/syscall.S
  ===
  --- eglibc-2.13.orig/ports/sysdeps/unix/sysv/linux/m68k/syscall.S  
  2011-12-04 14:36:16.0 +
  +++ eglibc-2.13/ports/sysdeps/unix/sysv/linux/m68k/syscall.S   
  2011-12-04 14:36:26.0 +
  @@ -24,9 +24,9 @@
 .text
   ENTRY (syscall)
 move.l 4(%sp), %d0  /* Load syscall number.  */
  -  _DOARGS_5 (24)  /* Frob arguments.  */
  +  _DOARGS_6 (28)  /* Frob arguments.  */
 trap 0 /* Do the system call.  */
  -  UNDOARGS_5  /* Unfrob arguments.  */
  +  UNDOARGS_6  /* Unfrob arguments.  */
 cmp.l -4095, %d0   /* Check %d0 for error.  */
 jcc SYSCALL_ERROR_LABEL /* Jump to error handler if negative.  */
 rts /* Return to caller.  */
 
 Thanks, installed.
 
 (Where?) So, should $someone submit that to eglibc-ports and
 Debisn src:eglibc? Did it indeed do the trick?
 

This patch should be reported to libc-po...@sourceware.org. If it also 
needs to be applied to the Debian package quickly, please open a bug 
report in the Debian BTS.

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20111213105916.ga9...@hall.aurel32.net



Bug#651746:

2011-12-13 Thread Jean Schurger
The lock seems to be occure in pulse:

Running gnome-shell inside gdb, show that backtrace:

Program received signal SIGINT, Interrupt.
0x73a2d2b7 in pthread_cond_wait@@GLIBC_2.3.2 ()
from /lib/x86_64-linux-gnu/libpthread.so.0
(gdb) bt
#0  0x73a2d2b7 in pthread_cond_wait@@GLIBC_2.3.2 ()
from /lib/x86_64-linux-gnu/libpthread.so.0
#1  0x7fffee98b7a0 in pa_threaded_mainloop_wait ()
from /usr/lib/x86_64-linux-gnu/libpulse.so.0
#2  0x7fffe34cc962 in pulse_driver_play ()
from /usr/lib/libcanberra-0.28/libcanberra-pulse.so
#3  0x74f6445b in ca_context_play_full ()
from /usr/lib/libcanberra.so.0
#4  0x74f647af in ca_context_play ()
from /usr/lib/libcanberra.so.0
#5  0x7743bce4 in meta_workspace_activate_with_focus ()
from /usr/lib/libmutter.so.0
#6  0x7517a7bc in ffi_call_unix64 ()
from /usr/lib/x86_64-linux-gnu/libffi.so.5
#7  0x7517a237 in ffi_call ()
from /usr/lib/x86_64-linux-gnu/libffi.so.5
#8  0x771abf45 in ?? () from /usr/lib/libgjs.so.0
#9  0x771acfb0 in ?? () from /usr/lib/libgjs.so.0
#10 0x76cc5540 in ?? () from /usr/lib/libmozjs.so.8d
#11 0x76cba8f2 in ?? () from /usr/lib/libmozjs.so.8d
#12 0x76cc5490 in ?? () from /usr/lib/libmozjs.so.8d
#13 0x76c949f0 in ?? () from /usr/lib/libmozjs.so.8d
#14 0x76cc54d3 in ?? () from /usr/lib/libmozjs.so.8d
#15 0x76cc5b87 in ?? () from /usr/lib/libmozjs.so.8d
#16 0x76c3e2b1 in JS_CallFunctionValue ()
from /usr/lib/libmozjs.so.8d
#17 0x7719ff0c in gjs_call_function_value ()
from /usr/lib/libgjs.so.0
#18 0x771aa8fd in gjs_closure_invoke ()
from /usr/lib/libgjs.so.0
#19 0x771b3ba9 in ?? () from /usr/lib/libgjs.so.0
#20 0x7fffee718804 in g_closure_invoke ()
from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#21 0x7fffee72a78a in ?? ()
from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#22 0x7fffee733e11 in g_signal_emit_valist ()
from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#23 0x7fffee733fb2 in g_signal_emit ()
from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
#24 0x77b7ad69 in ?? ()
from /usr/lib/gnome-shell/libgnome-shell.so
#25 0x77417c78 in ?? () from /usr/lib/libmutter.so.0
#26 0x77418e4c in meta_display_process_key_event ()
from /usr/lib/libmutter.so.0
#27 0x7740d75b in ?? () from /usr/lib/libmutter.so.0
#28 0x77457ef6 in ?? () from /usr/lib/libmutter.so.0
#29 0x7079a7f1 in ?? ()
from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
#30 0x7079a94b in ?? ()
from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
#31 0x707728d1 in gdk_display_get_event ()
from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
#32 0x7079a692 in ?? ()
from /usr/lib/x86_64-linux-gnu/libgdk-3.so.0
#33 0x7fffee04b0cf in g_main_context_dispatch ()
from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#34 0x7fffee04b8c8 in ?? ()
from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#35 0x7fffee04be02 in g_main_loop_run ()
from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#36 0x7741a691 in meta_run () from /usr/lib/libmutter.so.0
#37 0x00402c61 in main ()
(gdb) run
The program being debugged has been started already.
Start it from the beginning? (y or n) y
Starting program: /usr/bin/gnome-shell --replace



-- 
Jean Schurger
http://schurger.org (broken)
030A C5CB 269B E2DB FE8A  F6FE 2749 CC01 AFBA 3712


signature.asc
Description: This is a digitally signed message part


Re: [SRM] Uploading new upstream stable version to Squeeze?

2011-12-13 Thread Adam D. Barratt
On Tue, 2011-12-13 at 17:55 +0100, Aurelien Jarno wrote:
 I have attached a new version of what we plan to upload. It includes a
 few more fixes backported from the unstable version (look at the end of
 the changelog), and also a few more fixes from upstream (no new stable 
 version have been released, but the stable branch has still evolved a 
 bit). I am using this version (actually this one minus the two last 
 commits) for a few weeks at home and on a dozen of computers at work, so
 it's already a bit tested.
 
 Would it be possible to upload this, and do a call for test for people
 wanting to test it before the actual point release? That would also help
 people having problems due the bugs mentioned above.

Ack, please go ahead.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/1323801715.12813.1.ca...@hathi.jungle.funky-badger.org



Processed: tagging 651746

2011-12-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 651746 + pending
Bug #651746 [libc6] libc6: upgrade lead to GNOME desktop freezing up
Bug #651831 [libc6] gnome-shell: Shell freezes after second close click
Bug #651899 [libc6] gnome-shell: freezes when switching workspaces
Added tag(s) pending.
Added tag(s) pending.
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
651746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651746
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.132381604614746.transcr...@bugs.debian.org



r5079 - glibc-package/branches/glibc-branch-squeeze/debian

2011-12-13 Thread Aurelien Jarno
Author: aurel32
Date: 2011-12-13 22:31:31 + (Tue, 13 Dec 2011)
New Revision: 5079

Modified:
   glibc-package/branches/glibc-branch-squeeze/debian/changelog
Log:
Upload to squeeze


Modified: glibc-package/branches/glibc-branch-squeeze/debian/changelog
===
--- glibc-package/branches/glibc-branch-squeeze/debian/changelog
2011-12-13 10:23:05 UTC (rev 5078)
+++ glibc-package/branches/glibc-branch-squeeze/debian/changelog
2011-12-13 22:31:31 UTC (rev 5079)
@@ -1,4 +1,4 @@
-eglibc (2.11.3-1) UNRELEASED; urgency=low
+eglibc (2.11.3-1) unstable; urgency=low
 
   * Update from stable upstream version, and update from the upstream 
 stable branch:
@@ -58,7 +58,7 @@
   * patches/any/cvs-dlopen-tls.diff:  fix handling of static TLS in
 dlopen'ed objects.  Closes: #637239.
 
- -- Aurelien Jarno aure...@debian.org  Sat, 11 Jun 2011 18:12:35 +0200
+ -- Aurelien Jarno aure...@debian.org  Tue, 13 Dec 2011 11:23:12 +0100
 
 eglibc (2.11.2-10) unstable; urgency=low
 


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1raasl-0001jx...@vasks.debian.org



r5080 - glibc-package/branches/glibc-branch-squeeze/debian

2011-12-13 Thread Aurelien Jarno
Author: aurel32
Date: 2011-12-13 22:32:25 + (Tue, 13 Dec 2011)
New Revision: 5080

Modified:
   glibc-package/branches/glibc-branch-squeeze/debian/changelog
Log:
Fix the distribution


Modified: glibc-package/branches/glibc-branch-squeeze/debian/changelog
===
--- glibc-package/branches/glibc-branch-squeeze/debian/changelog
2011-12-13 22:31:31 UTC (rev 5079)
+++ glibc-package/branches/glibc-branch-squeeze/debian/changelog
2011-12-13 22:32:25 UTC (rev 5080)
@@ -1,4 +1,4 @@
-eglibc (2.11.3-1) unstable; urgency=low
+eglibc (2.11.3-1) stable; urgency=low
 
   * Update from stable upstream version, and update from the upstream 
 stable branch:


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1raate-0001qt...@vasks.debian.org



r5085 - glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in

2011-12-13 Thread Aurelien Jarno
Author: aurel32
Date: 2011-12-13 23:48:55 + (Tue, 13 Dec 2011)
New Revision: 5085

Modified:
   
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-alt.lintian-overrides
   
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-otherbuild.lintian-overrides
   
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc.lintian-overrides
Log:
Update lintian


Modified: 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-alt.lintian-overrides
===
--- 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-alt.lintian-overrides
  2011-12-13 23:42:50 UTC (rev 5084)
+++ 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-alt.lintian-overrides
  2011-12-13 23:48:55 UTC (rev 5085)
@@ -1,6 +1,6 @@
 # libpthread must be stripped specially; GDB needs the non-dynamic 
 # symbol table in order to load the thread debugging library.
-LIBC-FLAVOR: unstripped-binary-or-object .SLIBDIR/libpthread-2.11.1.so
+LIBC-FLAVOR: unstripped-binary-or-object .SLIBDIR/libpthread-2.11.3.so
 
 # Those file are actually .o files not package in a ar archive, and
 # thus should not be stripped
@@ -8,8 +8,8 @@
 LIBC-FLAVOR: unstripped-binary-or-object .LIBDIR/libmcheck.a
 
 # ld.so must be executable, otherwise the system will not work
-LIBC-FLAVOR: shlib-with-executable-bit .SLIBDIR/ld-2.11.1.so 0755
+LIBC-FLAVOR: shlib-with-executable-bit .SLIBDIR/ld-2.11.3.so 0755
 
 # It is normal that the ELF dynamic linker does not need any other 
 # library
-LIBC-FLAVOR: shared-lib-without-dependency-information .SLIBDIR/ld-2.11.1.so
+LIBC-FLAVOR: shared-lib-without-dependency-information .SLIBDIR/ld-2.11.3.so

Modified: 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-otherbuild.lintian-overrides
===
--- 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-otherbuild.lintian-overrides
   2011-12-13 23:42:50 UTC (rev 5084)
+++ 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc-otherbuild.lintian-overrides
   2011-12-13 23:48:55 UTC (rev 5085)
@@ -1,3 +1,3 @@
 # libpthread must be stripped specially; GDB needs the non-dynamic 
 # symbol table in order to load the thread debugging library.
-LIBC-FLAVOR: unstripped-binary-or-object .SLIBDIR/libpthread-2.11.1.so
+LIBC-FLAVOR: unstripped-binary-or-object .SLIBDIR/libpthread-2.11.3.so

Modified: 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc.lintian-overrides
===
--- 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc.lintian-overrides
  2011-12-13 23:42:50 UTC (rev 5084)
+++ 
glibc-package/branches/glibc-branch-squeeze/debian/debhelper.in/libc.lintian-overrides
  2011-12-13 23:48:55 UTC (rev 5085)
@@ -1,13 +1,13 @@
 # libpthread must be stripped specially; GDB needs the non-dynamic 
 # symbol table in order to load the thread debugging library.
-LIBC: unstripped-binary-or-object .SLIBDIR/libpthread-2.11.1.so
+LIBC: unstripped-binary-or-object .SLIBDIR/libpthread-2.11.3.so
 
 # ld.so must be executable, otherwise the system will not work
-LIBC: shlib-with-executable-bit SLIBDIR/ld-2.11.1.so 0755
+LIBC: shlib-with-executable-bit SLIBDIR/ld-2.11.3.so 0755
 
 # It is normal that the ELF dynamic linker does not need any other 
 # library
-LIBC: shared-lib-without-dependency-information .SLIBDIR/ld-2.11.1.so
+LIBC: shared-lib-without-dependency-information .SLIBDIR/ld-2.11.3.so
 
 # dependency on debconf is not needed, as glibc has a fallback to tty 
 LIBC: missing-debconf-dependency-for-preinst


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rac5f-0001gp...@vasks.debian.org



Bug#651746: marked as done (libc6: upgrade lead to GNOME desktop freezing up)

2011-12-13 Thread Debian Bug Tracking System
Your message dated Wed, 14 Dec 2011 00:03:29 +
with message-id e1racjl-0004kr...@franck.debian.org
and subject line Bug#651746: fixed in eglibc 2.13-23
has caused the Debian Bug report #651746,
regarding libc6: upgrade lead to GNOME desktop freezing up
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
651746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651746
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libc6
Version: 2.13-22
Severity: important

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***

Hi!

After upgrading to 2.13-22 this morning and performing a login into my
GNOME (3.2) desktop, it (mainly the window manager) froze up within 20
seconds.  I was only able to unfreeze it by killing the window manager and
starting it again from the console, followed by a quick freeze-up again
and again.  This is not only case using gnome-shell, but also when using
the GNOME Classic desktop and thus metacity.

After downgrading to libc6 2.13-21, things started working again.

Kind regards,
Paul


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (102, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libc6 depends on:
ii  libc-bin  2.13-21
ii  libgcc1   1:4.6.2-7

libc6 recommends no packages.

Versions of packages libc6 suggests:
ii  debconf [debconf-2.0]  1.5.41
ii  glibc-doc  none
ii  locales2.13-22

-- debconf information:
* glibc/upgrade: true
  glibc/disable-screensaver:
  glibc/restart-failed:
* glibc/restart-services: ssh postfix cups cron atd
  libraries/restart-without-asking: false


---End Message---
---BeginMessage---
Source: eglibc
Source-Version: 2.13-23

We believe that the bug you reported is fixed in the latest version of
eglibc, which is due to be installed in the Debian FTP archive:

eglibc-source_2.13-23_all.deb
  to main/e/eglibc/eglibc-source_2.13-23_all.deb
eglibc_2.13-23.diff.gz
  to main/e/eglibc/eglibc_2.13-23.diff.gz
eglibc_2.13-23.dsc
  to main/e/eglibc/eglibc_2.13-23.dsc
glibc-doc_2.13-23_all.deb
  to main/e/eglibc/glibc-doc_2.13-23_all.deb
libc-bin_2.13-23_amd64.deb
  to main/e/eglibc/libc-bin_2.13-23_amd64.deb
libc-dev-bin_2.13-23_amd64.deb
  to main/e/eglibc/libc-dev-bin_2.13-23_amd64.deb
libc6-dbg_2.13-23_amd64.deb
  to main/e/eglibc/libc6-dbg_2.13-23_amd64.deb
libc6-dev-i386_2.13-23_amd64.deb
  to main/e/eglibc/libc6-dev-i386_2.13-23_amd64.deb
libc6-dev_2.13-23_amd64.deb
  to main/e/eglibc/libc6-dev_2.13-23_amd64.deb
libc6-i386_2.13-23_amd64.deb
  to main/e/eglibc/libc6-i386_2.13-23_amd64.deb
libc6-pic_2.13-23_amd64.deb
  to main/e/eglibc/libc6-pic_2.13-23_amd64.deb
libc6-prof_2.13-23_amd64.deb
  to main/e/eglibc/libc6-prof_2.13-23_amd64.deb
libc6-udeb_2.13-23_amd64.udeb
  to main/e/eglibc/libc6-udeb_2.13-23_amd64.udeb
libc6_2.13-23_amd64.deb
  to main/e/eglibc/libc6_2.13-23_amd64.deb
libnss-dns-udeb_2.13-23_amd64.udeb
  to main/e/eglibc/libnss-dns-udeb_2.13-23_amd64.udeb
libnss-files-udeb_2.13-23_amd64.udeb
  to main/e/eglibc/libnss-files-udeb_2.13-23_amd64.udeb
locales-all_2.13-23_amd64.deb
  to main/e/eglibc/locales-all_2.13-23_amd64.deb
locales_2.13-23_all.deb
  to main/e/eglibc/locales_2.13-23_all.deb
multiarch-support_2.13-23_amd64.deb
  to main/e/eglibc/multiarch-support_2.13-23_amd64.deb
nscd_2.13-23_amd64.deb
  to main/e/eglibc/nscd_2.13-23_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 651...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno aure...@debian.org (supplier of updated eglibc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 13 Dec 2011 23:40:48 +0100
Source: eglibc
Binary: libc-bin libc-dev-bin glibc-doc eglibc-source 

Bug#651831: marked as done (gnome-shell: Shell freezes after second close click)

2011-12-13 Thread Debian Bug Tracking System
Your message dated Wed, 14 Dec 2011 00:03:29 +
with message-id e1racjl-0004kr...@franck.debian.org
and subject line Bug#651746: fixed in eglibc 2.13-23
has caused the Debian Bug report #651746,
regarding gnome-shell: Shell freezes after second close click
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
651746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651746
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gnome-shell
Version: 3.2.1-7+b1
Severity: important

Dear Maintainer,

after last gnome-shell's upgrade when try to close a second 
window/app after login gnome-shell freezes.

workaround:
- login
- open windows/app es. nautilus
- close nautilus
- reopen nautilus window
- close
- freeze

Thanks.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (850, 'unstable'), (800, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-shell depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.10.0-3
ii  gir1.2-accountsservice-1.0   0.6.15-2
ii  gir1.2-atk-1.0   2.2.0-2
ii  gir1.2-caribou-1.0   0.4.1-2
ii  gir1.2-clutter-1.0   1.8.2-2
ii  gir1.2-cogl-1.0  1.8.2-1
ii  gir1.2-coglpango-1.0 1.8.2-1
ii  gir1.2-folks-0.6 0.6.5-2
ii  gir1.2-freedesktop   1.31.0-2
ii  gir1.2-gconf-2.0 3.2.3-1
ii  gir1.2-gdkpixbuf-2.0 2.24.0-1
ii  gir1.2-gee-1.0   0.6.1-3
ii  gir1.2-gkbd-3.0  3.2.0-1
ii  gir1.2-glib-2.0  1.31.0-2
ii  gir1.2-gmenu-3.0 3.2.0.1-2
ii  gir1.2-gnomebluetooth-1.03.2.1-1
ii  gir1.2-gtk-3.0   3.2.2-3
ii  gir1.2-json-1.0  0.14.2-1
ii  gir1.2-mutter-3.03.2.1-2
ii  gir1.2-networkmanager-1.00.9.2.0-1
ii  gir1.2-pango-1.0 1.29.4-2
ii  gir1.2-polkit-1.00.103-1
ii  gir1.2-soup-2.4  2.36.1-1
ii  gir1.2-telepathyglib-0.120.17.1-1
ii  gir1.2-telepathylogger-0.2   0.2.10-2
ii  gir1.2-upowerglib-1.00.9.15-1
ii  gjs  1.30.0-2
ii  gnome-bluetooth  3.2.1-1
ii  gnome-icon-theme-symbolic3.2.1-1
ii  gnome-settings-daemon3.2.2-1
ii  gnome-shell-common   3.2.1-7
ii  gsettings-desktop-schemas3.2.0-2
ii  libatk1.0-0  2.2.0-2
ii  libc62.13-22
ii  libcairo-gobject21.10.2-6.1
ii  libcairo21.10.2-6.1
ii  libcamel-1.2-23  3.0.3-2
ii  libcanberra0 0.28-3
ii  libclutter-1.0-0 1.8.2-2
ii  libcogl-pango0   1.8.2-1
ii  libcogl5 1.8.2-1
ii  libcroco30.6.2-2
ii  libdbus-1-3  1.5.8-1
ii  libdbus-glib-1-2 0.98-1
ii  libdrm2  2.4.28-1
ii  libebook-1.2-12  3.2.1-1
ii  libecal-1.2-10   3.2.1-1
ii  libedataserver-1.2-153.2.1-1
ii  libedataserverui-3.0-1   3.2.1-1
ii  libffi5  3.0.10-3
ii  libfolks25   0.6.5-2
ii  libfontconfig1   2.8.0-3
ii  libfreetype6 2.4.8-1
ii  libgconf2-4  3.2.3-1
ii  libgdk-pixbuf2.0-0   2.24.0-1
ii  libgee2  0.6.1-3
ii  libgirepository-1.0-11.31.0-2
ii  libgjs0b [libgjs0-libmozjs8d]1.30.0-2
ii  libgl1-mesa-glx [libgl1] 7.11.2-1
ii  libglib2.0-0 2.30.2-4
ii  libgnome-desktop-3-2 

Bug#651899: marked as done (gnome-shell: freezes when switching workspaces)

2011-12-13 Thread Debian Bug Tracking System
Your message dated Wed, 14 Dec 2011 00:03:29 +
with message-id e1racjl-0004kr...@franck.debian.org
and subject line Bug#651746: fixed in eglibc 2.13-23
has caused the Debian Bug report #651746,
regarding gnome-shell: freezes when switching workspaces
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
651746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651746
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gnome-shell
Version: 3.0.2-8+b1
Severity: important

Hi,

gnome-shell sometimes freezes when I am switching workspaces, The mouse
still moves, but the UI does not respond at all. It seems like the click
events are still passing through the windows, but I cannot interact
with them or view them being updated:

* one time after I restarted my session, chromium had a list of tabs
  opened by my clicks on thumbnails in the start page, even though
  when I clicked I did not see any action in the chromium window

* another time I had mutt open in a gnome-terminal window, I killed it
  with from a VT console, but mutt was still visible in the window.

I tried debugging gnome-shell as documented in
http://live.gnome.org/GnomeShell/Debugging, but gnome-shell does not
crash, it only freezes; I do not get a prompt at gdb after I reproduce
the problem within the GNOME session.

I also tried to install gnome-shell from experimental but couldn't
because a missing dependency:

  gnome-shell : Depends: libedataserverui-3.0-1 (= 3.2.1) but it is not going 
to be installed

My video card:

$ lspci -v  | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated 
Graphics Controller (rev 02) (prog-if 00 [VGA controller])

The only difference between my box and a up to date sid box are the following
packages, being held back on their versions in wheezy because of #651316:

  libdrm-dev libdrm-intel1 libdrm-nouveau1a libdrm-radeon1 libdrm2 libkms1

Please let me know how I can provide more useful info regarding this
problem.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=pt_BR.utf8, LC_CTYPE=pt_BR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-shell depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.10.0-3
ii  gconf2   3.2.3-1
ii  gir1.2-atk-1.0   2.2.0-2
ii  gir1.2-clutter-1.0   1.8.2-2
ii  gir1.2-cogl-1.0  1.8.2-1
ii  gir1.2-coglpango-1.0 1.8.2-1
ii  gir1.2-freedesktop   1.31.0-2
ii  gir1.2-gconf-2.0 3.2.3-1
ii  gir1.2-gdkpixbuf-2.0 2.24.0-1
ii  gir1.2-gkbd-3.0  3.2.0-1
ii  gir1.2-glib-2.0  1.31.0-2
ii  gir1.2-gnomebluetooth-1.03.2.1-1
ii  gir1.2-gtk-3.0   3.2.2-3
ii  gir1.2-json-1.0  0.14.2-1
ii  gir1.2-mutter-3.03.2.1-2
ii  gir1.2-networkmanager-1.00.9.2.0-1
ii  gir1.2-pango-1.0 1.29.4-2
ii  gir1.2-polkit-1.00.103-1
ii  gir1.2-telepathyglib-0.120.16.2-1
ii  gir1.2-telepathylogger-0.2   0.2.10-2
ii  gir1.2-upowerglib-1.00.9.15-1
ii  gjs  1.30.0-2
ii  gnome-bluetooth  3.2.1-1
ii  gnome-icon-theme-symbolic3.2.1-1
ii  gnome-settings-daemon3.0.3-3+b1
ii  gsettings-desktop-schemas3.2.0-2
ii  libatk1.0-0  2.2.0-2
ii  libc62.13-22
ii  libcairo-gobject21.10.2-6.1
ii  libcairo21.10.2-6.1
ii  libcamel-1.2-23  3.0.3-2
ii  libcanberra0 0.28-3
ii  libclutter-1.0-0 1.8.2-2
ii  libcogl-pango0   1.8.2-1
ii  libcogl5 1.8.2-1
ii  libcroco30.6.2-2
ii  libdbus-1-3  1.4.16-1
ii  libdbus-glib-1-2 0.98-1
ii  libdrm2  none
ii  

Processing of eglibc_2.13-23_amd64.changes

2011-12-13 Thread Debian FTP Masters
eglibc_2.13-23_amd64.changes uploaded successfully to localhost
along with the files:
  eglibc_2.13-23.dsc
  eglibc_2.13-23.diff.gz
  glibc-doc_2.13-23_all.deb
  eglibc-source_2.13-23_all.deb
  locales_2.13-23_all.deb
  libc6_2.13-23_amd64.deb
  libc6-dev_2.13-23_amd64.deb
  libc6-prof_2.13-23_amd64.deb
  libc6-pic_2.13-23_amd64.deb
  libc-bin_2.13-23_amd64.deb
  libc-dev-bin_2.13-23_amd64.deb
  multiarch-support_2.13-23_amd64.deb
  locales-all_2.13-23_amd64.deb
  libc6-i386_2.13-23_amd64.deb
  libc6-dev-i386_2.13-23_amd64.deb
  nscd_2.13-23_amd64.deb
  libc6-dbg_2.13-23_amd64.deb
  libc6-udeb_2.13-23_amd64.udeb
  libnss-dns-udeb_2.13-23_amd64.udeb
  libnss-files-udeb_2.13-23_amd64.udeb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1racfx-00082r...@franck.debian.org



eglibc_2.13-23_amd64.changes ACCEPTED into unstable

2011-12-13 Thread Debian FTP Masters



Accepted:
eglibc-source_2.13-23_all.deb
  to main/e/eglibc/eglibc-source_2.13-23_all.deb
eglibc_2.13-23.diff.gz
  to main/e/eglibc/eglibc_2.13-23.diff.gz
eglibc_2.13-23.dsc
  to main/e/eglibc/eglibc_2.13-23.dsc
glibc-doc_2.13-23_all.deb
  to main/e/eglibc/glibc-doc_2.13-23_all.deb
libc-bin_2.13-23_amd64.deb
  to main/e/eglibc/libc-bin_2.13-23_amd64.deb
libc-dev-bin_2.13-23_amd64.deb
  to main/e/eglibc/libc-dev-bin_2.13-23_amd64.deb
libc6-dbg_2.13-23_amd64.deb
  to main/e/eglibc/libc6-dbg_2.13-23_amd64.deb
libc6-dev-i386_2.13-23_amd64.deb
  to main/e/eglibc/libc6-dev-i386_2.13-23_amd64.deb
libc6-dev_2.13-23_amd64.deb
  to main/e/eglibc/libc6-dev_2.13-23_amd64.deb
libc6-i386_2.13-23_amd64.deb
  to main/e/eglibc/libc6-i386_2.13-23_amd64.deb
libc6-pic_2.13-23_amd64.deb
  to main/e/eglibc/libc6-pic_2.13-23_amd64.deb
libc6-prof_2.13-23_amd64.deb
  to main/e/eglibc/libc6-prof_2.13-23_amd64.deb
libc6-udeb_2.13-23_amd64.udeb
  to main/e/eglibc/libc6-udeb_2.13-23_amd64.udeb
libc6_2.13-23_amd64.deb
  to main/e/eglibc/libc6_2.13-23_amd64.deb
libnss-dns-udeb_2.13-23_amd64.udeb
  to main/e/eglibc/libnss-dns-udeb_2.13-23_amd64.udeb
libnss-files-udeb_2.13-23_amd64.udeb
  to main/e/eglibc/libnss-files-udeb_2.13-23_amd64.udeb
locales-all_2.13-23_amd64.deb
  to main/e/eglibc/locales-all_2.13-23_amd64.deb
locales_2.13-23_all.deb
  to main/e/eglibc/locales_2.13-23_all.deb
multiarch-support_2.13-23_amd64.deb
  to main/e/eglibc/multiarch-support_2.13-23_amd64.deb
nscd_2.13-23_amd64.deb
  to main/e/eglibc/nscd_2.13-23_amd64.deb


Override entries for your package:
eglibc-source_2.13-23_all.deb - optional devel
eglibc_2.13-23.dsc - source libs
glibc-doc_2.13-23_all.deb - optional doc
libc-bin_2.13-23_amd64.deb - required libs
libc-dev-bin_2.13-23_amd64.deb - optional libdevel
libc6-dbg_2.13-23_amd64.deb - extra debug
libc6-dev-i386_2.13-23_amd64.deb - optional libdevel
libc6-dev_2.13-23_amd64.deb - optional libdevel
libc6-i386_2.13-23_amd64.deb - optional libs
libc6-pic_2.13-23_amd64.deb - optional libdevel
libc6-prof_2.13-23_amd64.deb - extra libdevel
libc6-udeb_2.13-23_amd64.udeb - extra debian-installer
libc6_2.13-23_amd64.deb - required libs
libnss-dns-udeb_2.13-23_amd64.udeb - extra debian-installer
libnss-files-udeb_2.13-23_amd64.udeb - extra debian-installer
locales-all_2.13-23_amd64.deb - extra localization
locales_2.13-23_all.deb - standard localization
multiarch-support_2.13-23_amd64.deb - standard libs
nscd_2.13-23_amd64.deb - optional admin

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 651746 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1racjl-0004kk...@franck.debian.org



struct user conflicts on armel and armfh

2011-12-13 Thread peter green
recently i've been seeing some packages FTBFS on armhf with definition 
clashes of struct
user. Test building packages the package on armel has invariblly shown 
the issue
happening there as well despite the same version of the source package 
having built there
successfully in the past. I've also seen mention of this issue in bug 
reports from others.


Afaict so far this issue has been dealt with on the appliation side but 
i'm not convinced
that expecting application developers to rename a structure that uses a 
common and

obvious name is reasonbable.

taking ratbox-services as an example the current version was built 
successfully on

armel 563 days ago, it failed on armhf 3 days ago.

-DHELPDIR=\/usr/share/ratbox-services/help\ 
-DLANGDIR=\/usr/share/ratbox-services/langs\ -c c_error.c
In file included from c_error.c:38:0:
../include/client.h:42:8: error: redefinition of 'struct user'
/usr/include/arm-linux-gnueabihf/sys/user.h:49:8: note: originally defined here
make[2]: *** [c_error.o] Error 1

I have reproduced this issue on armel sid and armel wheezy. The package
builds succesfully on armel squeeze.

Some testing reveals that in this case sys/user.h is pulled in by sys/procfs.h which in turn 
is pulled in by sys/ucontext.h which is pulled in by signal.h which is in turn pulled in by

signal.h which is in turn pulled in by sys/wait.h which is pulled in by a 
header in the app.

On amd64 (and presumablly other architectures) sys/ucontext.h does not include 
sys/procfs.h
so the issue does not happen.

I then took a look at the comments in the various headers along the chain.

sys/procfs.h has the following comment


/* This is somewhat modelled after the file of the same name on SVR4
  systems.  It provides a definition of the core file format for ELF
  used on Linux.  It doesn't have anything to do with the /proc file
  system, even though Linux has one.

  Anyway, the whole purpose of this file is for GDB and GDB only.
  Don't read too much into it.  Don't use it for anything other than
  GDB unless you know what you are doing.  */



and sys/user.h has the following comment


/* The whole purpose of this file is for GDB and GDB only.  Don't read
  too much into it.  Don't use it for anything other than GDB unless
  you know what you are doing.  */


meanwhile sys/wait.h has the following comment


/*
*POSIX Standard: 3.2.1 Wait for Process Terminationsys/wait.h
*/


,signal.h has the following comment


/*
*ISO C99 Standard: 7.14 Signal handling signal.h
*/


and sys/ucontext.h has the following comment


/* System V/ARM ABI compliant context switching support.  */


So now i've described the situation I have two questions

why the heck are headers that are supposedly for GDB and GDB only
and that define a structure name that is likely to conflict with 
structures in an application being pulled in by headers that are

supposed to be implementing standard interfaces?

Do porters and/or glibc maintainers think this should be dealt
with on the libc6-dev side or should I continue to file patches 
that deal with this issue on the application side?



--
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4ee7e6e3.8050...@postgrad.manchester.ac.uk



Processed: reassign 651733 to libc6, reassign 651765 to libc6, reassign 651932 to libc6 ..., affects 651746

2011-12-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 651733 libc6
Bug #651733 [libpulse0] PulseAudio-using software hangs with new libc
Bug reassigned from package 'libpulse0' to 'libc6'.
Bug No longer marked as found in versions sox/14.3.2-3 and pulseaudio/1.1-2.
 reassign 651765 libc6
Bug #651765 [pidgin] pidgin hangs after some time, and immediately with IRC
Bug reassigned from package 'pidgin' to 'libc6'.
Bug No longer marked as found in versions pidgin/2.10.1-1.
 reassign 651932 libc6
Bug #651932 [linphone] linphone hangs after a call
Bug reassigned from package 'linphone' to 'libc6'.
Bug No longer marked as found in versions linphone/3.3.2-4.1.
 forcemerge 651746 651733 651765 651932
Bug#651746: libc6: upgrade lead to GNOME desktop freezing up
Bug#651733: PulseAudio-using software hangs with new libc
Bug#651765: pidgin hangs after some time, and immediately with IRC
Bug#651932: linphone hangs after a call
Bug#651831: gnome-shell: Shell freezes after second close click
Bug#651899: gnome-shell: freezes when switching workspaces
Forcibly Merged 651733 651746 651765 651831 651899 651932.

 affects 651746 pidgin linphone libpulse0
Bug #651746 {Done: Aurelien Jarno aure...@debian.org} [libc6] libc6: upgrade 
lead to GNOME desktop freezing up
Bug #651733 {Done: Aurelien Jarno aure...@debian.org} [libc6] 
PulseAudio-using software hangs with new libc
Bug #651765 {Done: Aurelien Jarno aure...@debian.org} [libc6] pidgin hangs 
after some time, and immediately with IRC
Bug #651831 {Done: Aurelien Jarno aure...@debian.org} [libc6] gnome-shell: 
Shell freezes after second close click
Bug #651899 {Done: Aurelien Jarno aure...@debian.org} [libc6] gnome-shell: 
freezes when switching workspaces
Bug #651932 {Done: Aurelien Jarno aure...@debian.org} [libc6] linphone hangs 
after a call
Removed indication that 651746 affects gnome-shell
Added indication that 651746 affects linphone, pidgin, and libpulse0
Removed indication that 651733 affects gnome-shell
Added indication that 651733 affects linphone, pidgin, and libpulse0
Removed indication that 651765 affects gnome-shell
Added indication that 651765 affects linphone, pidgin, and libpulse0
Removed indication that 651831 affects gnome-shell
Added indication that 651831 affects linphone, pidgin, and libpulse0
Removed indication that 651899 affects gnome-shell
Added indication that 651899 affects linphone, pidgin, and libpulse0
Removed indication that 651932 affects gnome-shell
Added indication that 651932 affects linphone, pidgin, and libpulse0
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
651746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651746
651899: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651899
651765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651765
651733: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651733
651831: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651831
651932: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651932
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.132383113325657.transcr...@bugs.debian.org



Re: [SRM] Uploading new upstream stable version to Squeeze?

2011-12-13 Thread Aurelien Jarno
On Tue, Dec 13, 2011 at 06:41:54PM +, Adam D. Barratt wrote:
 On Tue, 2011-12-13 at 17:55 +0100, Aurelien Jarno wrote:
  I have attached a new version of what we plan to upload. It includes a
  few more fixes backported from the unstable version (look at the end of
  the changelog), and also a few more fixes from upstream (no new stable 
  version have been released, but the stable branch has still evolved a 
  bit). I am using this version (actually this one minus the two last 
  commits) for a few weeks at home and on a dozen of computers at work, so
  it's already a bit tested.
  
  Would it be possible to upload this, and do a call for test for people
  wanting to test it before the actual point release? That would also help
  people having problems due the bugs mentioned above.
 
 Ack, please go ahead.
 

Thanks, I have just done the upload.

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20111214065430.ga28...@hall.aurel32.net



Processed: reassign 652007 to libc6

2011-12-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 652007 libc6
Bug #652007 [libc6] pulseaudio: Pulseaudio hangs mplayer and others when 
heavily seeking
Ignoring request to reassign bug #652007 to the same package
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
652007: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652007
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13238479082452.transcr...@bugs.debian.org



Processed: forcibly merging 651746 652007

2011-12-13 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 651746 652007
Bug#651746: libc6: upgrade lead to GNOME desktop freezing up
Bug#652007: pulseaudio: Pulseaudio hangs mplayer and others when heavily seeking
Bug#651733: PulseAudio-using software hangs with new libc
Bug#651765: pidgin hangs after some time, and immediately with IRC
Bug#651831: gnome-shell: Shell freezes after second close click
Bug#651899: gnome-shell: freezes when switching workspaces
Bug#651932: linphone hangs after a call
Forcibly Merged 651733 651746 651765 651831 651899 651932 652007.

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
651899: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651899
651765: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651765
651733: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651733
651746: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651746
652007: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652007
651932: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651932
651831: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651831
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
To UNSUBSCRIBE, email to debian-glibc-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/handler.s.c.13238479232511.transcr...@bugs.debian.org