forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
scripts/gdb: add internal helper and convenience function for per-cpu…
… lookup This function allows to obtain a per-cpu variable, either of the current or an explicitly specified CPU. Note: sparc64 version is untested. Signed-off-by: Jan Kiszka <[email protected]> Cc: "David S. Miller" <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Jason Wessel <[email protected]> Cc: Andi Kleen <[email protected]> Cc: Ben Widawsky <[email protected]> Cc: Borislav Petkov <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
1 parent
a4d8679
commit fe7f9ed
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# | ||
# gdb helper commands and functions for Linux kernel debugging | ||
# | ||
# per-cpu tools | ||
# | ||
# Copyright (c) Siemens AG, 2011-2013 | ||
# | ||
# Authors: | ||
# Jan Kiszka <[email protected]> | ||
# | ||
# This work is licensed under the terms of the GNU GPL version 2. | ||
# | ||
|
||
import gdb | ||
|
||
from linux import tasks, utils | ||
|
||
|
||
MAX_CPUS = 4096 | ||
|
||
|
||
def get_current_cpu(): | ||
if utils.get_gdbserver_type() == utils.GDBSERVER_QEMU: | ||
return gdb.selected_thread().num - 1 | ||
elif utils.get_gdbserver_type() == utils.GDBSERVER_KGDB: | ||
tid = gdb.selected_thread().ptid[2] | ||
if tid > (0x100000000 - MAX_CPUS - 2): | ||
return 0x100000000 - tid - 2 | ||
else: | ||
return tasks.get_thread_info(tasks.get_task_by_pid(tid))['cpu'] | ||
else: | ||
raise gdb.GdbError("Sorry, obtaining the current CPU is not yet " | ||
"supported with this gdb server.") | ||
|
||
|
||
def per_cpu(var_ptr, cpu): | ||
if cpu == -1: | ||
cpu = get_current_cpu() | ||
if utils.is_target_arch("sparc:v9"): | ||
offset = gdb.parse_and_eval( | ||
"trap_block[{0}].__per_cpu_base".format(str(cpu))) | ||
else: | ||
try: | ||
offset = gdb.parse_and_eval( | ||
"__per_cpu_offset[{0}]".format(str(cpu))) | ||
except gdb.error: | ||
# !CONFIG_SMP case | ||
offset = 0 | ||
pointer = var_ptr.cast(utils.get_long_type()) + offset | ||
return pointer.cast(var_ptr.type).dereference() | ||
|
||
|
||
class PerCpu(gdb.Function): | ||
"""Return per-cpu variable. | ||
$lx_per_cpu("VAR"[, CPU]): Return the per-cpu variable called VAR for the | ||
given CPU number. If CPU is omitted, the CPU of the current context is used. | ||
Note that VAR has to be quoted as string.""" | ||
|
||
def __init__(self): | ||
super(PerCpu, self).__init__("lx_per_cpu") | ||
|
||
def invoke(self, var_name, cpu=-1): | ||
var_ptr = gdb.parse_and_eval("&" + var_name.string()) | ||
return per_cpu(var_ptr, cpu) | ||
|
||
|
||
PerCpu() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,4 @@ | |
import linux.modules | ||
import linux.dmesg | ||
import linux.tasks | ||
import linux.cpus |