Re: future branch

2012-02-02 Thread Peter Mazinger
Original-Nachricht Datum: Wed, 1 Feb 2012 21:03:28 -0800 Von: Khem Raj raj.k...@gmail.com An: Bernhard Reutner-Fischer rep.dot@gmail.com CC: Peter Mazinger p...@gmx.net, uclibc@uclibc.org Betreff: Re: future branch yes now that .33 is released we will work on putting

Re: future branch

2012-02-02 Thread Khem Raj
On Thu, Feb 2, 2012 at 6:33 AM, Peter Mazinger p...@gmx.net wrote: Original-Nachricht Datum: Wed, 1 Feb 2012 21:03:28 -0800 Von: Khem Raj raj.k...@gmail.com An: Bernhard Reutner-Fischer rep.dot@gmail.com CC: Peter Mazinger p...@gmx.net, uclibc@uclibc.org Betreff: Re:

Re: future branch

2012-02-02 Thread Peter Mazinger
yes  now that .33 is released we will work on putting these patches in. unfortunately these patches need to rebase on top of master and currently my rebase does not boot so we need Peter's help to refresh them how do you think my help should look like? After waiting so long the

[PATCH] inet:rpc: fix authnone_marshal in multithreading context

2012-02-02 Thread Carmelo AMOROSO
This is a port of glibc's fix by Zack Weinberg as reported in http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=142312, and discussed in http://sourceware.org/ml/libc-alpha/2002-04/msg00069.html and following. Signed-off-by: Carmelo Amoroso carmelo.amor...@st.com --- libc/inet/rpc/auth_none.c |

Re: future branch

2012-02-02 Thread Khem Raj
On Thu, Feb 2, 2012 at 1:38 PM, Peter Mazinger p...@gmx.net wrote: they are already rebased on master here https://github.com/kraj/uClibc so i will start from there and if you can help in issues as we find that will be useful i want to avoid breakages fine, tell me about problems you

[PATCH] stat: Use stat64 syscall if available

2012-02-02 Thread Khem Raj
This is needed for stat'ing loop devices 255 since otherwise kernel returns EOVERFLOW becasue it needs st_rdev/st_dev to be larger than 16bits but in kernel it uses __old_kernel_stat for stat syscall which has st_rdev/st_dev as unsigned short Add a testcase Signed-off-by: Khem Raj