[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#749087: marked as done (libc6: Patch for pthread_spin_lock on sparc32/sparc64)



Your message dated Wed, 04 Jun 2014 21:36:00 +0000
with message-id <E1WsIqm-0001sv-Q2@franck.debian.org>
and subject line Bug#749087: fixed in eglibc 2.19-1
has caused the Debian Bug report #749087,
regarding libc6: Patch for pthread_spin_lock on sparc32/sparc64
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 owner@bugs.debian.org
immediately.)


-- 
749087: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749087
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: libc6
Version: 2.18-7
Severity: serious
Tags: upstream patch
Justification: causes ftbfs for src:kyotocabinet on sparc
Forwarded: https://sourceware.org/bugzilla/show_bug.cgi?id=16882
Control: affects -1 + src:kyotocabinet

Hi,

kyotocabinet failed to build on sparc[1], because of a test failure.
It's a deadlock due to a bug in pthread_spin_lock[2]. Glibc branches
from 2.16 to 2.19 are affected. Patches are attached[3][4]. (waiting
for upstream approval) I've tested it locally, and all the testcases
in kyotocabinet passed, resulting in a successful build.

[1]
https://buildd.debian.org/status/fetch.php?pkg=kyotocabinet&arch=sparc&ver=1.2.76-4&stamp=1370038499
[2] https://sourceware.org/bugzilla/show_bug.cgi?id=16882
[3] https://sourceware.org/bugzilla/attachment.cgi?id=7613&action=diff
[4] https://sourceware.org/bugzilla/attachment.cgi?id=7614&action=diff

Cheers,

Yixuan
>From d3f72a5abca98758c80cdd59f20e6abf2a0cab2a Mon Sep 17 00:00:00 2001
From: GUO Yixuan <culu.gyx@gmail.com>
Date: Thu, 22 May 2014 22:48:31 -0400
Subject: [PATCH 1/2] Fixed pthread_spin_lock on sparc32/64 (bug 16882)

The bug occurs under this situation.
  1. thread1 gets the lock, set the byte to FF
  2. when thread2 is trying to lock, it enters the loop,
     checking whether the byte is 00
  3. thread1 unlocks, set to 00
  4. thread2 finally gets the lock, without setting to FF
  5. thread3 gets the lock, before thread2 unlocks it
---
 nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S | 4 ++--
 nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S b/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
index ea863d7..3accc69 100644
--- a/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
+++ b/nptl/sysdeps/sparc/sparc32/pthread_spin_lock.S
@@ -19,11 +19,11 @@
 
 	.text
 ENTRY(pthread_spin_lock)
-	ldstub		[%o0], %g1
+1:	ldstub		[%o0], %g1
 	orcc		%g1, 0x0, %g0
 	bne,a		2f
 	 ldub		[%o0], %g1
-1:	retl
+	retl
 	 mov		0, %o0
 2:	orcc		%g1, 0x0, %g0
 	bne,a		2b
diff --git a/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S b/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
index 0f849b2..aec6654 100644
--- a/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
+++ b/nptl/sysdeps/sparc/sparc64/pthread_spin_lock.S
@@ -19,10 +19,10 @@
 
 	.text
 ENTRY(pthread_spin_lock)
-	ldstub		[%o0], %g1
+1:	ldstub		[%o0], %g1
 	brnz,pn		%g1, 2f
 	 membar		#StoreLoad | #StoreStore
-1:	retl
+	retl
 	 mov		0, %o0
 2:	ldub		[%o0], %g1
 	brnz,pt		%g1, 2b
-- 
2.0.0.rc2

>From 1e11cc5a3689a4f960087ecd28188da580c67158 Mon Sep 17 00:00:00 2001
From: GUO Yixuan <culu.gyx@gmail.com>
Date: Thu, 22 May 2014 23:41:05 -0400
Subject: [PATCH 2/2] New test for pthread_spin_lock (bug 16882)

---
 nptl/Makefile    |   2 +-
 nptl/tst-spin4.c | 109 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 110 insertions(+), 1 deletion(-)
 create mode 100644 nptl/tst-spin4.c

diff --git a/nptl/Makefile b/nptl/Makefile
index 7551406..0bb6ab1 100644
--- a/nptl/Makefile
+++ b/nptl/Makefile
@@ -210,7 +210,7 @@ tests = tst-typesizes \
 	tst-mutexpi1 tst-mutexpi2 tst-mutexpi3 tst-mutexpi4 tst-mutexpi5 \
 	tst-mutexpi5a tst-mutexpi6 tst-mutexpi7 tst-mutexpi7a tst-mutexpi8 \
 	tst-mutexpi9 \
-	tst-spin1 tst-spin2 tst-spin3 \
+	tst-spin1 tst-spin2 tst-spin3 tst-spin4 \
 	tst-cond1 tst-cond2 tst-cond3 tst-cond4 tst-cond5 tst-cond6 tst-cond7 \
 	tst-cond8 tst-cond9 tst-cond10 tst-cond11 tst-cond12 tst-cond13 \
 	tst-cond14 tst-cond15 tst-cond16 tst-cond17 tst-cond18 tst-cond19 \
diff --git a/nptl/tst-spin4.c b/nptl/tst-spin4.c
new file mode 100644
index 0000000..5b23a17
--- /dev/null
+++ b/nptl/tst-spin4.c
@@ -0,0 +1,109 @@
+#include <pthread.h>
+#include <stdio.h>
+#include <unistd.h>
+
+static int count = 0;
+
+static void *
+thread_add_one (void *arg)
+{
+  int tmp;
+  pthread_spinlock_t *lock = (pthread_spinlock_t *) arg;
+
+  /* When do_test holds the lock for 1 sec, the two thread will be
+     in contention for the lock. */
+  if (pthread_spin_lock (lock) != 0)
+    {
+      puts ("thread_add_one(): spin_lock failed");
+      pthread_exit ((void *) 1l);
+    }
+
+  /* sleep 1s before modifying count */
+  tmp = count;
+  sleep (1);
+  count = tmp + 1;
+
+  if (pthread_spin_unlock (lock) != 0)
+    {
+      puts ("thread_add_one(): spin_unlock failed");
+      pthread_exit ((void *) 1l);
+    }
+
+  return NULL;
+}
+
+static int
+do_test (void)
+{
+  pthread_t thr1, thr2;
+  pthread_spinlock_t lock;
+  int tmp;
+
+  if (pthread_spin_init (&lock, PTHREAD_PROCESS_PRIVATE) != 0)
+    {
+      puts ("spin_init failed");
+      return 1;
+    }
+
+  if (pthread_spin_lock (&lock) != 0)
+    {
+      puts ("1st spin_lock failed");
+      return 1;
+    }
+
+  if (pthread_create (&thr1, NULL, thread_add_one, (void *) &lock) != 0)
+    {
+      puts ("1st pthread_create failed");
+      return 1;
+    }
+
+  if (pthread_create (&thr2, NULL, thread_add_one, (void *) &lock) != 0)
+    {
+      puts ("2nd pthread_create failed");
+      return 1;
+    }
+
+  /* sleep 1s before modifying count */
+  tmp = count;
+  sleep (1);
+  count = tmp + 1;
+
+  if (pthread_spin_unlock (&lock) != 0)
+    {
+      puts ("1st spin_unlock failed");
+      return 1;
+    }
+
+  void *status;
+  if (pthread_join (thr1, &status) != 0)
+    {
+      puts ("1st pthread_join failed");
+      return 1;
+    }
+  if (status != NULL)
+    {
+      puts ("failure in the 1st thread");
+      return 1;
+    }
+  if (pthread_join (thr2, &status) != 0)
+    {
+      puts ("2nd pthread_join failed");
+      return 1;
+    }
+  if (status != NULL)
+    {
+      puts ("failure in the 2nd thread");
+      return 1;
+    }
+
+  if (count != 3)
+    {
+      printf ("count is %d, should be 3\n", count);
+      return 1;
+    }
+  return 0;
+}
+
+#define TIMEOUT 5
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"
-- 
2.0.0.rc2


--- End Message ---
--- Begin Message ---
Source: eglibc
Source-Version: 2.19-1

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.

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 749087@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno <aurel32@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 ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 04 Jun 2014 20:32:06 +0200
Source: eglibc
Binary: libc-bin libc-dev-bin glibc-doc eglibc-source locales locales-all nscd multiarch-support libc6 libc6-dev libc6-dbg libc6-prof libc6-pic libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-prof libc6.1-pic libc6.1-udeb libc0.3 libc0.3-dev libc0.3-dbg libc0.3-prof libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev libc0.1-dbg libc0.1-prof libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc libc6-dev-sparc libc6-sparc64 libc6-dev-sparc64 libc6-s390 libc6-dev-s390 libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 libc6-dev-ppc64 libc6-mipsn32 libc6-dev-mipsn32 libc6-mips64 libc6-dev-mips64 libc6-armhf libc6-dev-armhf libc6-armel libc6-dev-armel libc0.1-i386 libc0.1-dev-i386 libc6-x32 libc6-dev-x32 libc6-i686 libc6-xen libc0.1-i686 libc0.3-i686 libc0.3-xen libc6.1-alphaev67 libc6-loongson2f libnss-dns-udeb libnss-files-udeb
Architecture: source all amd64
Version: 2.19-1
Distribution: unstable
Urgency: medium
Maintainer: Aurelien Jarno <aurel32@debian.org>
Changed-By: Aurelien Jarno <aurel32@debian.org>
Description: 
 eglibc-source - Embedded GNU C Library: sources
 glibc-doc  - Embedded GNU C Library: Documentation
 libc-bin   - Embedded GNU C Library: Binaries
 libc-dev-bin - Embedded GNU C Library: Development binaries
 libc0.1    - Embedded GNU C Library: Shared libraries
 libc0.1-dbg - Embedded GNU C Library: detached debugging symbols
 libc0.1-dev - Embedded GNU C Library: Development Libraries and Header Files
 libc0.1-dev-i386 - Embedded GNU C Library: 32bit development libraries for AMD64
 libc0.1-i386 - Embedded GNU C Library: 32bit shared libraries for AMD64
 libc0.1-i686 - Embedded GNU C Library: Shared libraries [i686 optimized]
 libc0.1-pic - Embedded GNU C Library: PIC archive library
 libc0.1-prof - Embedded GNU C Library: Profiling Libraries
 libc0.1-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libc0.3    - Embedded GNU C Library: Shared libraries
 libc0.3-dbg - Embedded GNU C Library: detached debugging symbols
 libc0.3-dev - Embedded GNU C Library: Development Libraries and Header Files
 libc0.3-i686 - Embedded GNU C Library: Shared libraries [i686 optimized]
 libc0.3-pic - Embedded GNU C Library: PIC archive library
 libc0.3-prof - Embedded GNU C Library: Profiling Libraries
 libc0.3-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libc0.3-xen - Embedded GNU C Library: Shared libraries [Xen version]
 libc6      - Embedded GNU C Library: Shared libraries
 libc6-amd64 - Embedded GNU C Library: 64bit Shared libraries for AMD64
 libc6-armel - Embedded GNU C Library: ARM softfp shared libraries for armhf
 libc6-armhf - Embedded GNU C Library: ARM hard float shared libraries for armel
 libc6-dbg  - Embedded GNU C Library: detached debugging symbols
 libc6-dev  - Embedded GNU C Library: Development Libraries and Header Files
 libc6-dev-amd64 - Embedded GNU C Library: 64bit Development Libraries for AMD64
 libc6-dev-armel - Embedded GNU C Library: ARM softfp development libraries for armh
 libc6-dev-armhf - Embedded GNU C Library: ARM hard float development libraries for
 libc6-dev-i386 - Embedded GNU C Library: 32-bit development libraries for AMD64
 libc6-dev-mips64 - Embedded GNU C Library: 64bit Development Libraries for MIPS64
 libc6-dev-mipsn32 - Embedded GNU C Library: n32 Development Libraries for MIPS64
 libc6-dev-powerpc - Embedded GNU C Library: 32bit powerpc development libraries for p
 libc6-dev-ppc64 - Embedded GNU C Library: 64bit Development Libraries for PowerPC64
 libc6-dev-s390 - Embedded GNU C Library: 32bit Development Libraries for IBM zSeri
 libc6-dev-sparc - Embedded GNU C Library: 32bit Development Libraries for SPARC
 libc6-dev-sparc64 - Embedded GNU C Library: 64bit Development Libraries for UltraSPAR
 libc6-dev-x32 - Embedded GNU C Library: X32 ABI Development Libraries for AMD64
 libc6-i386 - Embedded GNU C Library: 32-bit shared libraries for AMD64
 libc6-i686 - Embedded GNU C Library: Shared libraries [i686 optimized]
 libc6-loongson2f - Embedded GNU C Library: Shared libraries (Loongson 2F optimized)
 libc6-mips64 - Embedded GNU C Library: 64bit Shared libraries for MIPS64
 libc6-mipsn32 - Embedded GNU C Library: n32 Shared libraries for MIPS64
 libc6-pic  - Embedded GNU C Library: PIC archive library
 libc6-powerpc - Embedded GNU C Library: 32bit powerpc shared libraries for ppc64
 libc6-ppc64 - Embedded GNU C Library: 64bit Shared libraries for PowerPC64
 libc6-prof - Embedded GNU C Library: Profiling Libraries
 libc6-s390 - Embedded GNU C Library: 32bit Shared libraries for IBM zSeries
 libc6-sparc - Embedded GNU C Library: 32bit Shared libraries for SPARC
 libc6-sparc64 - Embedded GNU C Library: 64bit Shared libraries for UltraSPARC
 libc6-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libc6-x32  - Embedded GNU C Library: X32 ABI Shared libraries for AMD64
 libc6-xen  - Embedded GNU C Library: Shared libraries [Xen version]
 libc6.1    - Embedded GNU C Library: Shared libraries
 libc6.1-alphaev67 - Embedded GNU C Library: Shared libraries (EV67 optimized)
 libc6.1-dbg - Embedded GNU C Library: detached debugging symbols
 libc6.1-dev - Embedded GNU C Library: Development Libraries and Header Files
 libc6.1-pic - Embedded GNU C Library: PIC archive library
 libc6.1-prof - Embedded GNU C Library: Profiling Libraries
 libc6.1-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - Embedded GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - Embedded GNU C Library: NSS helper for files - udeb (udeb)
 locales    - Embedded GNU C Library: National Language (locale) data [support]
 locales-all - Embedded GNU C Library: Precompiled locale data
 multiarch-support - Transitional package to ensure multiarch compatibility
 nscd       - Embedded GNU C Library: Name Service Cache Daemon
Closes: 647084 722075 749087 750124
Changes: 
 eglibc (2.19-1) unstable; urgency=medium
 .
   [ Aurelien Jarno ]
   * debian/control.in/main: remove outdated Build-Depends on bzip2.
   * debian/patches/any/cvs-resolv-reuse-fd.diff: new patch from upstream
     to fix invalid file descriptor reuse while sending DNS query.  Closes:
     #722075.
   * Finish debconf translation update from Esko Arajärvi.  Closes: #750124.
   * debian/patches/git-updates.diff: update from the 2.19 branch:
     - fixes pthread_spin_lock on sparc/sparc64.  Closes: #749087.
   * debian/patches/any/submitted-argp-attribute.diff: new patch from Ondřej
     Bílka to fix string functions with FORTIFY_SOURCE=2 when <argp.h> is
     included before <string.h>.  Closes: #647084.
   * debian/sysdeps/{sparc,sparc64}.mk: temporarily pass --disable-multiarch
     to configure to try to fix random segmentation faults on Niagara 1
     machines.
 .
   [ Samuel Thibault ]
   * hurd-i386/unsubmitted-pthread_posix-option.diff: Split patches into...
   * ... hurd-i386/tg-{posix_thread,gai_misc}.diff.
   * patches/hurd-i386/cvs-libpthread_guardsize.diff: Fix guard size
     computation and enable again.
Checksums-Sha1: 
 eceab01b30a742c4b9611cc4081916343108f747 7361 eglibc_2.19-1.dsc
 7abefb6203e89a05ff44c852c5f05e09ad235f32 980948 eglibc_2.19-1.debian.tar.xz
 04467c132eb8176c3c05fe66a000109ab35c3ea5 2284982 glibc-doc_2.19-1_all.deb
 1fa733e0fb4fb7824f0b1c391c9305e915bc93be 14226076 eglibc-source_2.19-1_all.deb
 8264ff8753fd97d8de6bb69b1c2ed6df1276be42 3925742 locales_2.19-1_all.deb
 c9f68dc38d0ba935a50b111f64b22aa8574a7d6f 4815630 libc6_2.19-1_amd64.deb
 7fed38e27f3a5b1b34318c427324df2b3271469d 2000672 libc6-dev_2.19-1_amd64.deb
 2ba6243fe470f6250c776efd446a59fe1b96a342 1469242 libc6-pic_2.19-1_amd64.deb
 86f9f48f7f3b984c52962437285b5014306b1c54 1287282 libc-bin_2.19-1_amd64.deb
 179a9fcb77edd90cb52843993ffa038d955d268c 233910 libc-dev-bin_2.19-1_amd64.deb
 2bfef4df3941e46f2e3746f244ef802b5b256cbc 170072 multiarch-support_2.19-1_amd64.deb
 00b3446ee0bd23729a3b0992232e2db9a54b9b7e 1609656 libc6-prof_2.19-1_amd64.deb
 74e8e4d9a7e1ea289c4263daad2f5594630f3a47 3517866 locales-all_2.19-1_amd64.deb
 1e87d18694a570420cc395b33c0b37b14c84e212 2369410 libc6-i386_2.19-1_amd64.deb
 3287104889fa3b395d85c78e92e17fbd6e1d00d7 1309868 libc6-dev-i386_2.19-1_amd64.deb
 e302b13beed838ba2a54bae056de39942efcbcb5 2591248 libc6-x32_2.19-1_amd64.deb
 6de8e7b727320f02608a2be51dadcb2329648556 1576678 libc6-dev-x32_2.19-1_amd64.deb
 d357114f7cdd95a41af40f9c8165dafb4c39d968 234236 nscd_2.19-1_amd64.deb
 d713c608d13b8b10d3f95aa1d036b784d9d7e24a 3429314 libc6-dbg_2.19-1_amd64.deb
 f4beb04a6149c121c6752f3ecf8fd2c44f136ecf 1060256 libc6-udeb_2.19-1_amd64.udeb
 633452ebb6ca26b7ad8495f66c9950f54499ec42 10036 libnss-dns-udeb_2.19-1_amd64.udeb
 32b79141ce7f62af3cede18d42eb806dfc881150 16512 libnss-files-udeb_2.19-1_amd64.udeb
Checksums-Sha256: 
 8c7c07208eb609ec03a453a0b5cb349c9b381fb45c0de5eb022f24bd6b18baef 7361 eglibc_2.19-1.dsc
 4b66d0f5bee72b57182d2e7900cc66935219cc02d7f9a59cc50815e004e8abee 980948 eglibc_2.19-1.debian.tar.xz
 7cf5ec0c327a66e0332c95b9ae185bbdf5ad42e1799ecf7d61b24e1f46f0d4d1 2284982 glibc-doc_2.19-1_all.deb
 6b7abfe3d37b6e6bb5392fde46224414ab5370d5441b17aa1ecee0581913884f 14226076 eglibc-source_2.19-1_all.deb
 9dff52952637c4cbc28efecc00129901d8b3c37242945502bb34bd1763bbecf8 3925742 locales_2.19-1_all.deb
 2d291313a5dd88079fb14d0324c2ea6d22bdd2463b1b9647ef66f149f418f5f9 4815630 libc6_2.19-1_amd64.deb
 603b49770bfb5925e35b886cb8e36b538dd845a4f7e6e3a5f9b0e631efe8bbc1 2000672 libc6-dev_2.19-1_amd64.deb
 08d64be3180bc1aa964d046548062c54411ccfb85c7a8c55fbb59d6d21aee1ab 1469242 libc6-pic_2.19-1_amd64.deb
 2cb04b7a03925ed0294bf0c37715c1f150bc06223cc758354e2d2c5a19727f66 1287282 libc-bin_2.19-1_amd64.deb
 cbd8d6817a934c543f410183b9ebfb1ce54098ce52908db428017eeeebdf485c 233910 libc-dev-bin_2.19-1_amd64.deb
 f0fa0fec56c503387053b841c999f81dff8466f4ff3492bacb0a8bfae7fe0335 170072 multiarch-support_2.19-1_amd64.deb
 49adbcecbb3e545f74a4cb75e42a3e914c440afa81d6fc15e9ff5f0f5e4944a0 1609656 libc6-prof_2.19-1_amd64.deb
 9199592a49d5b42bbf5c666cdb4c37a1ced9ac97c11dbdaf6043e0398f96fa88 3517866 locales-all_2.19-1_amd64.deb
 6d8b6a02d963fec58b39c9548cbbed8f7f4d9c7282a6a13ff1546d9c25d25060 2369410 libc6-i386_2.19-1_amd64.deb
 3f9b21daa7f5abf1ec0b60feb3182d9b9bf672899b8c37c0d0062ab5546b3b3a 1309868 libc6-dev-i386_2.19-1_amd64.deb
 d89245ec66064c5c1385e89a201179b773bb2023d6b874d6ee03bc7ded1b5578 2591248 libc6-x32_2.19-1_amd64.deb
 45c19117bf3f63c95c1d0b8fe49a99a81a3e59e578ec30c34051204a0a8c4021 1576678 libc6-dev-x32_2.19-1_amd64.deb
 dc38d5b2fcaf56e0a261ba23dac551f00958edc4cc39ab09af3b953669acf0e4 234236 nscd_2.19-1_amd64.deb
 6191f7bce39b5fda20547efe490209f785100873aa3917a3768ee3b45786458e 3429314 libc6-dbg_2.19-1_amd64.deb
 1bb6310ce14093616b99f0072ab582cbd8617424b3490a84151e918c0e51723b 1060256 libc6-udeb_2.19-1_amd64.udeb
 22a1ce0b6749dcc775d8e028ffe6123a8de98a468f9c4a05ab42c293b48dcfae 10036 libnss-dns-udeb_2.19-1_amd64.udeb
 f90ba4e3657fa03d4cb6da4f9ac1212de408cb5eb8f2d2d1a8b0e57a766fc9b4 16512 libnss-files-udeb_2.19-1_amd64.udeb
Files: 
 1c4c2a2c52c9eed0d9722d88f642f021 2284982 doc optional glibc-doc_2.19-1_all.deb
 629e73331376d376559d5cb4d3594219 14226076 devel optional eglibc-source_2.19-1_all.deb
 78d894aa7e87e8b0d37cc46d834201f8 3925742 localization standard locales_2.19-1_all.deb
 443ad299c6375f4861e7afd71cf27383 4815630 libs required libc6_2.19-1_amd64.deb
 232ae350fe47b95eadfef47247827b95 2000672 libdevel optional libc6-dev_2.19-1_amd64.deb
 cbde102bec41fe5204210cec69c3ef77 1469242 libdevel optional libc6-pic_2.19-1_amd64.deb
 2e7a103b2495cd1dc5d7bed164bf3d57 1287282 libs required libc-bin_2.19-1_amd64.deb
 59831e2854c9edb6d941162ce61de489 233910 libdevel optional libc-dev-bin_2.19-1_amd64.deb
 af756e55ba4c48249af8810b09c7dc26 170072 libs required multiarch-support_2.19-1_amd64.deb
 84a6bd12cfcbdcb649fc94f062e8cd7a 1609656 libdevel extra libc6-prof_2.19-1_amd64.deb
 fb17eb20d9eee93b1384197113b2424d 3517866 localization extra locales-all_2.19-1_amd64.deb
 e024e8554644358a8614467cebdb479f 2369410 libs optional libc6-i386_2.19-1_amd64.deb
 608ab214b2a4538aa33270e71d1358f5 1309868 libdevel optional libc6-dev-i386_2.19-1_amd64.deb
 79d99ab94b2d1e1a771ab3ba6c50da05 2591248 libs optional libc6-x32_2.19-1_amd64.deb
 ed1761c3e6c24cca6355e38a5b845bc9 1576678 libdevel optional libc6-dev-x32_2.19-1_amd64.deb
 107a3b58571c69587d86328de88724ae 234236 admin optional nscd_2.19-1_amd64.deb
 72c02195a20dff1c989614f75b20ad32 3429314 debug extra libc6-dbg_2.19-1_amd64.deb
 0c62bda5c8de864a89b8cdcbeeb3931f 1060256 debian-installer extra libc6-udeb_2.19-1_amd64.udeb
 ba2e84b8a15071a5d1571effebe52ab6 10036 debian-installer extra libnss-dns-udeb_2.19-1_amd64.udeb
 6ca03a320cb33b021f295dfd830c592d 16512 debian-installer extra libnss-files-udeb_2.19-1_amd64.udeb
 f96d82571fe89dce1ee6a35a27e4e4d1 7361 libs required eglibc_2.19-1.dsc
 e90692f2ecc770e3bb48fec13535c54b 980948 libs required eglibc_2.19-1.debian.tar.xz
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIVAwUBU4+DyLqceAYd3YybAQj0aQ/8DzRMBHhwUO71PIO9ykLrFBFN4WgRfkZG
dlzTIWDEn70FZB57Rtw/eEM9wxFJiN7IwyP2uSHUHj4eD6HPCSJvdKCTdHirZK1q
1sKIL5Ary++TIbMRZCcv4+Jxuvmjb+AbWQvWHPPgPYY05v/egWaa88QMWVJVJ3La
cRyKBimMOj2q4wJSEK0Ns3+6s8T1JfrD755vVxlXyJTKKaR+0X3EbPuyra5OKLVA
s0gB/c5x8FWW+h5PClZa7lduelnSI5onCGQgOAjLsBK/ZqcZZUCXGCrEUGntwhQ+
YF81OqMMazfWqu89D1p3Q9AyNE5hBLjdRTubk9lpCY85/3YFkXfrkx6qo5pj3382
pgDxhLjOXzXDwdMmUpDMQVogf6t91nm9lXL9QycyDsi9lf04fCmL4d+MIdPG873h
sKAZBQGJ8jqk3dG+I3wYNh+8aAYOuQ6DP3EugUZmBanmKv9vP+CyC+4mzVbcsE7J
8TyJDlxnkBE7WzQQoWrKDJRZceUzn/MTlefDs88/IaztW9dWU1RGMwSOCsmazIYp
zeKETCluRiegNoUJSuq2JjQmWV8+ya5icroOKUvydPlYhMhPksd8wztcAnSTZY8R
WLrkUbCFoeWcJzxaPCtm3IZzNFZP2rEwJbdUENaqJlStEQiKfm4SNV5tvYbCDFug
D+77NxzDosE=
=BJ84
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: