Re: [PATCH 4/5] Add protected symbols support for all architectures

2011-01-13 Thread Natanael Copa
On Wed, Jan 12, 2011 at 4:48 PM, Carmelo AMOROSO carmelo.amor...@st.com wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 1/12/2011 4:31 PM, Natanael Copa wrote: this didnt apply against current git master? ... Hi you need to apply also the patch 1,2 and 3 that revert the arch

Re: [PATCH 1/3] nptl: Fix __USER_LABEL_PREFIX__ concatenation

2011-01-13 Thread Carmelo Amoroso
Hi What about using stringify around the label instead of defining the two macros? Could you give a try, thanks. Cheers Carmelo Inviato da iPod Il giorno 12/gen/2011, alle ore 13:05, Will Newton will.new...@gmail.com ha scritto: The current C macro magic does not correctly concatenate the

Re: [PATCH 4/5] Add protected symbols support for all architectures

2011-01-13 Thread Carmelo Amoroso
Hi It's strange i'll check again and repost Apologies Inviato da iPod Il giorno 13/gen/2011, alle ore 08:07, Khem Raj raj.k...@gmail.com ha scritto: On 1/12/2011 7:48 AM, Carmelo AMOROSO wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 1/12/2011 4:31 PM, Natanael Copa wrote: On

Re: [PATCH 4/5] Add protected symbols support for all architectures

2011-01-13 Thread Carmelo AMOROSO
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 1/13/2011 9:09 AM, Carmelo Amoroso wrote: Hi It's strange i'll check again and repost Apologies Inviato da iPod Il giorno 13/gen/2011, alle ore 08:07, Khem Raj raj.k...@gmail.com ha scritto: On 1/12/2011 7:48 AM, Carmelo AMOROSO

[PATCH v2] nptl: Fix __USER_LABEL_PREFIX__ concatenation

2011-01-13 Thread Will Newton
The current C macro magic does not correctly concatenate the __USER_LABEL_PREFIX__ string on architectures where it has a non-empty value. We need to use __stringify to get the desired behaviour. Signed-off-by: Will Newton will.new...@imgtec.com --- libpthread/nptl/pthreadP.h | 14

Re: [PATCH 4/5] Add protected symbols support for all architectures

2011-01-13 Thread Khem Raj
On Wed, Jan 12, 2011 at 3:22 AM, Carmelo AMOROSO carmelo.amor...@st.com wrote: diff --git a/ldso/ldso/mips/elfinterp.c b/ldso/ldso/mips/elfinterp.c index a56ee81..1c1489d 100644 --- a/ldso/ldso/mips/elfinterp.c +++ b/ldso/ldso/mips/elfinterp.c @@ -213,10 +213,14 @@ int

Re: [PATCH 0/5] Generic implementation for protected symbols

2011-01-13 Thread Khem Raj
On 1/12/2011 5:46 AM, Carmelo AMOROSO wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 1/12/2011 12:34 PM, Carmelo AMOROSO wrote: Folks, even if a bit late here the patch set for handling protected symbols for all architecture in the common code _dl_find_hash. The implementation is