diff options
| author | Peter Zijlstra <[email protected]> | 2010-10-14 19:10:38 +0000 |
|---|---|---|
| committer | Ingo Molnar <[email protected]> | 2010-10-18 17:58:56 +0000 |
| commit | 3b6e901f839f42afb40f614418df82c08b01320a (patch) | |
| tree | 04056f3347b926e9623c225acd496e39b9d1b85a /lib/dynamic_debug.c | |
| parent | perf, hw_breakpoint: Fix crash in hw_breakpoint creation (diff) | |
| download | kernel-3b6e901f839f42afb40f614418df82c08b01320a.tar.gz kernel-3b6e901f839f42afb40f614418df82c08b01320a.zip | |
jump_label: Use more consistent naming
Now that there's still only a few users around, rename things to make
them more consistent.
Signed-off-by: Peter Zijlstra <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: Ingo Molnar <[email protected]>
Diffstat (limited to 'lib/dynamic_debug.c')
| -rw-r--r-- | lib/dynamic_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c index e925c7b960f1..7bd6df781ce5 100644 --- a/lib/dynamic_debug.c +++ b/lib/dynamic_debug.c @@ -142,9 +142,9 @@ static void ddebug_change(const struct ddebug_query *query, dt->num_enabled++; dp->flags = newflags; if (newflags) { - enable_jump_label(&dp->enabled); + jump_label_enable(&dp->enabled); } else { - disable_jump_label(&dp->enabled); + jump_label_disable(&dp->enabled); } if (verbose) printk(KERN_INFO |
