Processed: reassign 609389 to libc6

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

> reassign 609389 libc6
Bug #609389 [libc-bin] libc-bin: getconf -a have many variables set not 
properly (i.e. LEVEL*CACHE*)
Bug reassigned from package 'libc-bin' to 'libc6'.
Bug No longer marked as found in versions eglibc/2.11.2-7 and eglibc/2.13-20.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
609389: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609389
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.131629535727274.transcr...@bugs.debian.org



Re: Processed: Reopening: incorrect cache sizes in getconf -a

2011-09-17 Thread Aurelien Jarno
On Mon, Sep 12, 2011 at 02:48:51PM +0200, Witold Baryluk wrote:
> Upstream bugzilla page
> http://cygwin.com/bugzilla/show_bug.cgi?id=12587
> 
> A fix in 2.13-1 was using
> patches/i386/cvs-cacheinfo.diff
> it should be in upstream sources, but looks
> something changed.

patches/i386/cvs-cacheinfo.diff is already included in the current
eglibc package, which means that upstream bug#12587 doesn't correspond
to your issue.

-- 
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/20110917213203.ga27...@hall.aurel32.net



Re: Bug#637664: Re: Bug#637664: pu: package tzdata/2011h-0squeeze1

2011-09-17 Thread Adam D. Barratt
On Wed, 2011-09-14 at 16:40 +0200, Youssef Eldakar wrote:
> On 01/-10/-28163 09:59 PM, Adam D. Barratt wrote:
> > On Fri, 2011-09-02 at 17:23 +0400, Eugene Barbashin wrote:
[Russian law changes on October 30th]
> > For the record, after some discussion with the maintainers on IRC and as
> > the next point releases for both stable and oldstable are due to occur
> > before mid-October, we've decided not to push an update earlier.  There
> > may be an update to either package before the point release in order to
> > incorporate any further changes.
> 
> Well, in Egypt, as of the last Friday of April 2011, a Squeeze 
> installation has incorrect time. I believe pushing an update is worth 
> reconsidering.

If it's broken for more than four months now, why has nobody mentioned
the issue before?

tzdata maintainers - any thoughts here?  I know Aurelien mentioned that
there was probably another update for lenny/squeeze appearing before the
point releases in any case, but I'm not sure what the status is there.

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/1316282221.21594.98.ca...@hathi.jungle.funky-badger.org



Bug#641868: alpha: fallocate() in libc6.1 but no declaration in fcntl.h

2011-09-17 Thread Michael Cree
On 17/09/11 12:08, Jonathan Nieder wrote:
> Michael Cree wrote:
> 
>> The fallocate() interface is present in libc6.1 on Alpha as is easily
>> verified by:
> [...]
>> Only the posix_fallocate() interface is declared in the headers as
>> verified by:
> [...]
>> Source package libtorrent FTBFS because of this.
> 
> Yep, looks like glibc-ports's
> sysdeps/unix/sysv/linux/alpha/bits/fcntl.h did not get updated at the
> same time as cvs/glibc-2_10~159 (Declare fallocate{,64}, 2009-03-03)
> and the corresponding changes for other ports.
> 
> The source is at  (and the
> analagous source from glibc proper is at
> ).  Care to suggest a patch? 

Suggested patch attached.  Untested at present.

Cheers
Michael.

>From e23765440e54566ed86469e1ba4899160a73cfb1 Mon Sep 17 00:00:00 2001
From: Michael Cree 
Date: Sat, 17 Sep 2011 17:45:37 +1200
Subject: [PATCH] Alpha: add fallocate declaration to fcntl.h

---
 sysdeps/unix/sysv/linux/alpha/bits/fcntl.h |   17 +
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
index e5e726b..7d10249 100644
--- a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
@@ -252,6 +252,23 @@ extern ssize_t splice (int __fdin, __off64_t *__offin, int __fdout,
 extern ssize_t tee (int __fdin, int __fdout, size_t __len,
 		unsigned int __flags);
 
+/* Reserve storage for the data of the file associated with FD. */
+# ifndef __USE_FILE_OFFSET64
+extern int fallocate (int __fd, int __mode, __off_t __offset, __off_t __len);
+# else
+#  ifdef __REDIRECT
+extern int __REDIRECT (fallocate, (int __fd, int __mode, __off64_t __offset,
+   __off64_t __len),
+   fallocate64);
+#  else
+#   define fallocate fallocate64
+#  endif
+# endif
+# ifdef __USE_LARGEFILE64
+extern int fallocate64 (int __fd, int __mode, __off64_t __offset,
+__off64_t __len);
+# endif
+
 #endif
 
 __END_DECLS
-- 
1.7.4.3