projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
231941e
)
liblockdep: Add the 'lockdep' user-space utility
author
Sasha Levin
<
[email protected]
>
Thu, 13 Jun 2013 22:41:23 +0000
(18:41 -0400)
committer
Ingo Molnar
<
[email protected]
>
Wed, 27 Nov 2013 10:56:25 +0000
(11:56 +0100)
This is a simple wrapper to make using liblockdep on existing
applications much easier.
After running 'make && make install', it becomes quite simple to
test things with liblockdep. For example, to try it on perf:
lockdep perf
No other integration required.
Signed-off-by: Sasha Levin <
[email protected]
>
Signed-off-by: Peter Zijlstra <
[email protected]
>
Cc:
[email protected]
Link:
http://lkml.kernel.org/r/
[email protected]
[ Changed it to load ./liblockdep.so, so it can be tested in situ. ]
Signed-off-by: Ingo Molnar <
[email protected]
>
tools/lib/lockdep/lockdep
[new file with mode: 0755]
patch
|
blob
diff --git a/tools/lib/lockdep/lockdep
b/tools/lib/lockdep/lockdep
new file mode 100755
(executable)
index 0000000..
49af9fe
--- /dev/null
+++ b/
tools/lib/lockdep/lockdep
@@ -0,0
+1,3
@@
+#!/bin/bash
+
+LD_PRELOAD="./liblockdep.so $LD_PRELOAD" "$@"