Created attachment 7044 [details] testcase Introducing an audit library currently force-enables instrumenting for profiling in the dynamic linker (as if LD_AUDIT implied LD_PROFILE). However, this is not necessary if the audit library does not provide la_plt{enter,exit} symbols. Attached testcase demonstrates the performance hit: $ make test time ./main 0.47user 0.00system 0:00.48elapsed 99%CPU (0avgtext+0avgdata 1984maxresident)k 0inputs+0outputs (0major+170minor)pagefaults 0swaps time env LD_AUDIT=./libaudit.so ./main 8.96user 0.00system 0:08.97elapsed 99%CPU (0avgtext+0avgdata 3264maxresident)k 0inputs+0outputs (0major+442minor)pagefaults 0swaps
Patch: http://sourceware.org/ml/libc-alpha/2013-05/msg00888.html
This patch causes la_symbind64 to no longer run (also I assume la_symbind32), so the scope isn't limited to just the la_plt{enter,exit} functions.
Fixed on 2.35 (063f9ba220f434c7f30dd65c4cff17c0c458a7cf).