Re: [PATCH V2 8/8] MIPS: Fix more *_NONBLOCK definitions

2012-04-07 Thread Mike Frysinger
On Sunday 08 April 2012 01:55:52 Kevin Cernekee wrote: > On Sat, Apr 7, 2012 at 10:32 PM, Mike Frysinger wrote: > > On Saturday 07 April 2012 16:31:32 Kevin Cernekee wrote: > >> The proposed change is to add #ifdef clauses for __mips__, similar to > >> what was done for SFD_NONBLOCK in include/sys

Re: [PATCH V2 8/8] MIPS: Fix more *_NONBLOCK definitions

2012-04-07 Thread Kevin Cernekee
On Sat, Apr 7, 2012 at 10:32 PM, Mike Frysinger wrote: > On Saturday 07 April 2012 16:31:32 Kevin Cernekee wrote: >> The proposed change is to add #ifdef clauses for __mips__, similar to >> what was done for SFD_NONBLOCK in include/sys/signalfd.h .  This fixes >> the two failing test cases. > > we

Re: [PATCH V2 8/8] MIPS: Fix more *_NONBLOCK definitions

2012-04-07 Thread Mike Frysinger
On Saturday 07 April 2012 16:31:32 Kevin Cernekee wrote: > The proposed change is to add #ifdef clauses for __mips__, similar to > what was done for SFD_NONBLOCK in include/sys/signalfd.h . This fixes > the two failing test cases. we don't want arch ifdefs in these common files, nor do we want to

Re: [PATCH 3/8] test/signal: Fix compile warning in tst-sigset

2012-04-07 Thread Mike Frysinger
On Saturday 07 April 2012 16:31:27 Kevin Cernekee wrote: > Move up the variable declaration, to fix this: > > tst-sigset.c: In function 'do_test': > tst-sigset.c:28:3: warning: ISO C90 forbids mixed declarations and code the tests that we import from glibc i'd rather not modify we build the rest

Re: [PATCH 1/8] test: Ignore various test objects

2012-04-07 Thread Mike Frysinger
thanks, merged -mike signature.asc Description: This is a digitally signed message part. ___ uClibc mailing list uClibc@uclibc.org http://lists.busybox.net/mailman/listinfo/uclibc

Re: [PATCH V5] ldso: fix fdpic support broken from prelink patch

2012-04-07 Thread Mike Frysinger
On Friday 06 April 2012 05:18:35 Filippo ARCIDIACONO wrote: > The fdpic support has been broken since the prelink support was added, > because it didn't take into account DL_LOADADDR_TYPE could be a different > type of ElfW(Addr). i fixed a typo in the mmu code and pushed it. thanks! -mike sign

Re: [PATCH V2 8/8] MIPS: Fix more *_NONBLOCK definitions

2012-04-07 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/07/2012 02:22 PM, Kevin Cernekee wrote: > On Sat, Apr 7, 2012 at 2:09 PM, Khem Raj > wrote: >>> After seeing a problem report involving one of the O_NONBLOCK >>> "derivatives," I looked through the tree to see what else might >>> be affected.

Re: [PATCH V2 8/8] MIPS: Fix more *_NONBLOCK definitions

2012-04-07 Thread Kevin Cernekee
On Sat, Apr 7, 2012 at 2:09 PM, Khem Raj wrote: >> After seeing a problem report involving one of the O_NONBLOCK >> "derivatives," I looked through the tree to see what else might be >> affected.  Here is what I found: > > We already have this kind of patch in future branch IIRC I think TFD_NONBL

Re: [PATCH V2 8/8] MIPS: Fix more *_NONBLOCK definitions

2012-04-07 Thread Khem Raj
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/07/2012 01:31 PM, Kevin Cernekee wrote: > MIPS defines O_NONBLOCK differently from most other architectures. > The common definitions use 04000 / 0x800, but MIPS uses 0200 / 0x80 > instead. > > After seeing a problem report involving one of the

[PATCH V2 8/8] MIPS: Fix more *_NONBLOCK definitions

2012-04-07 Thread Kevin Cernekee
MIPS defines O_NONBLOCK differently from most other architectures. The common definitions use 04000 / 0x800, but MIPS uses 0200 / 0x80 instead. After seeing a problem report involving one of the O_NONBLOCK "derivatives," I looked through the tree to see what else might be affected. Here is what

[PATCH 7/8] test/misc: Add tst-inotify

2012-04-07 Thread Kevin Cernekee
Signed-off-by: Kevin Cernekee --- test/.gitignore |1 + test/misc/tst-inotify.c | 66 +++ 2 files changed, 67 insertions(+), 0 deletions(-) create mode 100644 test/misc/tst-inotify.c diff --git a/test/.gitignore b/test/.gitignore index 2

[PATCH 6/8] test/inet: Add tst-sock-nonblock

2012-04-07 Thread Kevin Cernekee
Signed-off-by: Kevin Cernekee --- test/.gitignore |1 + test/inet/tst-sock-nonblock.c | 53 + 2 files changed, 54 insertions(+), 0 deletions(-) create mode 100644 test/inet/tst-sock-nonblock.c diff --git a/test/.gitignore b/test/.gitig

[PATCH 5/8] test/time: Add tst-timerfd

2012-04-07 Thread Kevin Cernekee
Signed-off-by: Kevin Cernekee --- test/.gitignore |1 + test/time/tst-timerfd.c | 71 +++ 2 files changed, 72 insertions(+), 0 deletions(-) create mode 100644 test/time/tst-timerfd.c diff --git a/test/.gitignore b/test/.gitignore index a

[PATCH 4/8] test/signal: Add tst-signalfd

2012-04-07 Thread Kevin Cernekee
Signed-off-by: Kevin Cernekee --- test/.gitignore|1 + test/signal/tst-signalfd.c | 63 2 files changed, 64 insertions(+), 0 deletions(-) create mode 100644 test/signal/tst-signalfd.c diff --git a/test/.gitignore b/test/.gitignore i

[PATCH 3/8] test/signal: Fix compile warning in tst-sigset

2012-04-07 Thread Kevin Cernekee
Move up the variable declaration, to fix this: tst-sigset.c: In function 'do_test': tst-sigset.c:28:3: warning: ISO C90 forbids mixed declarations and code Signed-off-by: Kevin Cernekee --- test/signal/tst-sigset.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/te

[PATCH 1/8] test: Ignore various test objects

2012-04-07 Thread Kevin Cernekee
Signed-off-by: Kevin Cernekee --- test/.gitignore |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/test/.gitignore b/test/.gitignore index c892816..a39fbec 100644 --- a/test/.gitignore +++ b/test/.gitignore @@ -29,11 +29,15 @@ dlopen/dltest2 dlopen/dlundef dlopen/lib