[yocto] [prelink-cross][PATCH 0/2] aarch64 fixes reported by testsuite failures

2015-11-26 Thread Maninder Singh
Testsuite summary for # TOTAL: 47 # PASS: 34 # SKIP: 6 # XFAIL: 0 # FAIL: 7 # XPASS: 0 # ERROR: 0 Maninder Singh (2): testsuite: fixes in testsuite according to aarch64 src/arch

[yocto] [prelink-cross][PATCH 1/2] testsuite: fixes in testsuite according to aarch64

2015-11-26 Thread Maninder Singh
This Patch fixes testsuite by adding support of aarch64 Signed-off-by: Vaneet Narang <v.nar...@samsung.com> Signed-off-by: Maninder Singh <maninder...@samsung.com> --- testsuite/reloc2.sh |2 +- testsuite/reloc8.sh |2 +- testsuite/reloc9.sh |2 +- testsuite/tls3.sh

[yocto] [prelink-cross][PATCH 2/2] src/arch-aarch64.c:testsuite failure fixes in aarch64

2015-11-26 Thread Maninder Singh
This patch fixes testsuite failure in aarch64 prelink undo section. Signed-off-by: Vaneet Narang <v.nar...@samsung.com> Signed-off-by: Maninder Singh <maninder...@samsung.com> --- src/arch-aarch64.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ar

[yocto] [prelink-cross][PATCH 1/1] configure.ac: with new automake make is not working

2015-11-17 Thread Maninder Singh
samsung.com> Signed-off-by: Maninder Singh <maninder...@samsung.com> --- configure.ac |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 4943932..791b8bd 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,12 @@ d

Re: [yocto] [prelink-cross][PATCH 1/1] rtld.c: LD_PRELOAD bugfix

2015-11-09 Thread Maninder Singh
Hello, >On 11/7/15 5:24 AM, Maninder Singh wrote: >> Hi, >> Ping > >I'd gotten a msg after this to hold off and wait for an update. Is this the >updated version of the fix? > >--Mark Yes, we send message for update a fix for LD_PRELOAD im

Re: [yocto] [prelink-cross][PATCH 1/1] rtld.c: LD_PRELOAD bugfix

2015-11-07 Thread Maninder Singh
mbols and hence resulted in less number of conflicts. >2. Reduce code redundancy. >3. Buffer Overflow fix. > >Signed-off-by: Maninder Singh <maninder...@samsung.com> >Signed-off-by: Vaneet Narang <v.nar...@samsung.com> >Reviewed-by: Doha Hwang <doha.hw...@

[yocto] [PATCH 1/1] prelink: AARCH64 support added

2015-10-30 Thread Maninder Singh
nar...@samsung.com> Signed-off-by: Maninder Singh <maninder...@samsung.com> --- trunk/src/Makefile.am|2 +- trunk/src/arch-aarch64.c | 594 ++ trunk/src/dso.c |1 + 3 files changed, 596 insertions(+), 1 deletions(-) create

[yocto] [prelink-cross][PATCH 1/1] rtld.c: LD_PRELOAD bugfix

2015-09-21 Thread Maninder Singh
number of conflicts. 2. Reduce code redundancy. 3. Buffer Overflow fix. Signed-off-by: Maninder Singh <maninder...@samsung.com> Signed-off-by: Vaneet Narang <v.nar...@samsung.com> Reviewed-by: Doha Hwang <doha.hw...@samsung.com> --- trunk/src/

Re: [yocto] [prelink-cross] LD_PRELOAD Implementation in Prelink

2015-09-11 Thread Maninder Singh
Hi Mark, Thanks for checking, There is one bug in this patch , we will share the fix after testing probably on monday. Thanks Maninder Singh >>Merged to the staging branch. >On 5/18/15 12:17 AM, Maninder Singh wrote: >> EP-F6AA0618C49C4AEDA73BFF1B39950BAB >> Hi, >&

[yocto] [prelink-cross][PATCH 1/1] rtld: remove if check before free

2015-06-23 Thread Maninder Singh
No need of explicit NULL check before free Signed-off-by: Maninder Singh maninder...@samsung.com --- trunk/src/rtld/rtld.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/trunk/src/rtld/rtld.c b/trunk/src/rtld/rtld.c index 35dfde7..3ed1db3 100644 --- a/trunk/src/rtld

[yocto] [EDT][prelink-cross][PATCH 1/1] bugifx for soname mismatch

2015-05-17 Thread Maninder Singh
is prelink fills soname in gnu.liblist section but loader uses filename not soname.So we created a workaround for this issue. To use filename instead of soname in gnu.liblist Usage :./prelink -s or ./prelink --ignore-soname Signed-off-by: Maninder Singh maninder...@samsung.com Signed-off

[yocto] [EDT][prelink-cross] LD_PRELOAD Implementation in Prelink

2015-05-17 Thread Maninder Singh
this feature : ./prelink --ld-preload=libpreload1.so:libpreload2.so: upto 20 libs Order of libraries to be preloaded is significant. Make sure sequence mentioned in prelink should be same as runtime sequence. Signed-off-by: Vaneet Narang v.nar...@samsung.com Signed-off-by: Maninder Singh

[yocto] [EDT][prelink-cross] possible memory leak in opd_size

2015-05-06 Thread Maninder Singh
EP-F6AA0618C49C4AEDA73BFF1B39950BAB Hi, we found one issue through code-walk through and it seems we are creating unusable OPD table , Not sure about fix, please check below fix. Signed-off-by: Vaneet Narang v.nar...@samsung.com Signed-off-by: Maninder Singh maninder...@samsung.com Reviewed

[yocto] [EDT][PATCH][prelink-cross] dso validation check fix

2015-05-05 Thread Maninder Singh
EP-F6AA0618C49C4AEDA73BFF1B39950BAB Hi Mark, dso null pointer check is wrongly placed. Signed-off-by: Maninder Singh maninder...@samsung.com Signed-off-by: Vaneet Narang v.nar...@samsung.com Reviewed-by: Ajeet Yadav ajee...@samsung.com --- trunk/src/rtld/rtld.c |4 ++-- 1 files changed, 2

[yocto] [EDT] [PATCH] [prelink-cross] realloc fix memory leak

2015-05-05 Thread Maninder Singh
EP-F6AA0618C49C4AEDA73BFF1B39950BAB Hi Mark, Free previously allocated memory if realloc fails. Signed-off-by: Maninder Singh maninder...@samsung.com Signed-off-by: Vaneet narang v.nar...@samsung.com Reviewed-by: Akhilesh Kumar akhiles...@samsung.com --- trunk/src/doit.c|4 +++- trunk

[yocto] [EDT][prelink-cross][PATCH] cleanup code

2015-05-05 Thread Maninder Singh
= ET_UNPRELINKABLE; - if (dso) close_dso (dso); return 0; } -- 1.7.1 Thanks Maninder Singh -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

Re: [yocto] [prelink-cross][PATCH 1/1] debug message for dependencies not found

2015-04-07 Thread Maninder Singh
Maninder Singh This and the other patch have been merged onto the cross_prelink_staging branch. Please test that I merged it properly. (Everything passed my basic testing, but I haven't run it against any ARM/HF libraries or similar.) --Mark On 4/6/15 4:07 AM, Maninder Singh wrote: Hi, Same mail

[yocto] [prelink-cross][PATCH 1/1] debug-for-missing-loader-and-libc

2015-04-06 Thread Maninder Singh
shared libraries: libB.so: cannot open shared object file: No such file or directory where libB.so is missing dependecy Signed-off-by: Maninder Singh maninder...@samsung.com Signed-off-by: Vaneet Narang v.nar...@samsung.com Reviewed-by: Ajeet Yadav ajee...@samsung.com Reviewed-by: Geon-ho Kim

[yocto] [prelink-cross] [PATCH 1/1] debug-for-missing-loader-and-libc

2015-04-06 Thread Maninder Singh
we will know failure reason. ./prelink: /test_binary: Could not parse `./prelink-rtld: error while loading shared libraries: ld-linux.so.3' (In this case ld-linux.so.3 was missing) Signed-off-by: Maninder Singh maninder...@samsung.com Signed-off-by: Vaneet Narang v.nar...@samsung.com Reviewed

[yocto] [prelink-cross][PATCH 1/1] debug message for dependencies not found

2015-04-06 Thread Maninder Singh
: ./prelink: /test_binary: Could not find one of the dependencies: ./prelink-rtld: error while loading shared libraries: libB.so: cannot open shared object file: No such file or directory where libB.so is missing dependecy Signed-off-by: Maninder Singh maninder...@samsung.com Signed-off-by: Vaneet Narang

Re: [yocto] [prelink-cross] [PATCH 1/1] Remove extra check for ld-linux.so.3 in strcmp

2015-03-31 Thread Maninder Singh
-- Hi Mark, Sorry for missing ID in Signed-off-by: Maninder Singh Signed-off-by: Maninder Singh I suggested that change just to remove redundat code. This looks Ok to me http://git.yoctoproject.org/cgit/cgit.cgi/prelink-cross/commit/?h=cross_prelink_stagingid

Re: [yocto] [prelink-cross] [PATCH 1/1] Remove extra check for ld-linux.so.3 in strcmp

2015-03-31 Thread Maninder Singh
Hi Mark, Sorry for missing ID in Signed-off-by: Maninder Singh Signed-off-by: Maninder Singh maninder...@samsung.com I suggested that change just to remove redundat code. This looks Ok to me http://git.yoctoproject.org/cgit/cgit.cgi/prelink-cross/commit/?h=cross_prelink_stagingid

[yocto] [prelink-cross] [PATCH 1/1] Remove extra check for ld-linux.so.3 in strcmp

2015-03-31 Thread Maninder Singh
Title: Samsung Enterprise Portal mySingle Hi, From 05ab779af24baef957972aa1d2a9e9d29212cc4c Mon Sep 17 00:00:00 2001From: Maninder Singh maninder...@samsung.comDate: Thu, 19 Mar 2015 03:02:59 +0530Subject: [PATCH 1/1] Remove extra check for ld-linux.so.3 in strcmpif (! strcmp (soname, &qu