#include #include #include #include #include #include "../../util/util.h" #include "../../util/debug.h" #include "../../util/symbol.h" #include "../browser.h" #include "../helpline.h" #include "../keysyms.h" #include "map.h" struct map_browser { struct ui_browser b; struct map *map; u8 addrlen; }; static void map_browser__write(struct ui_browser *browser, void *nd, int row) { struct symbol *sym = rb_entry(nd, struct symbol, rb_node); struct map_browser *mb = container_of(browser, struct map_browser, b); bool current_entry = ui_browser__is_current_entry(browser, row); int width; ui_browser__set_percent_color(browser, 0, current_entry); ui_browser__printf(browser, "%*" PRIx64 " %*" PRIx64 " %c ", mb->addrlen, sym->start, mb->addrlen, sym->end, sym->binding == STB_GLOBAL ? 'g' : sym->binding == STB_LOCAL ? 'l' : 'w'); width = browser->width - ((mb->addrlen * 2) + 4); if (width > 0) ui_browser__write_nstring(browser, sym->name, width); } /* FIXME uber-kludgy, see comment on cmd_report... */ static u32 *symbol__browser_index(struct symbol *browser) { return ((void *)browser) - sizeof(struct rb_node) - sizeof(u32); } static int map_browser__search(struct map_browser *browser) { char target[512]; struct symbol *sym; int err = ui_browser__input_window("Search by name/addr", "Prefix with 0x to search by address", target, "ENTER: OK, ESC: Cancel", 0); if (err != K_ENTER) return -1; if (target[0] == '0' && tolower(target[1]) == 'x') { u64 addr = strtoull(target, NULL, 16); sym = map__find_symbol(browser->map, addr); } else sym = map__find_symbol_by_name(browser->map, target); if (sym != NULL) { u32 *idx = symbol__browser_index(sym); browser->b.top = &sym->rb_node; browser->b.index = browser->b.top_idx = *idx; } else ui_helpline__fpush("%s not found!", target); return 0; } static int map_browser__run(struct map_browser *browser) { int key; if (ui_browser__show(&browser->b, browser->map->dso->long_name, "Press ESC to exit, %s / to search", verbose ? "" : "restart with -v to use") < 0) return -1; while (1) { key = ui_browser__run(&browser->b, 0); switch (key) { case '/': if (verbose) map_browser__search(browser); default: break; case K_LEFT: case K_ESC: case 'q': case CTRL('c'): goto out; } } out: ui_browser__hide(&browser->b); return key; } int map__browse(struct map *map) { struct map_browser mb = { .b = { .entries = &map->dso->symbols[map->type], .refresh = ui_browser__rb_tree_refresh, .seek = ui_browser__rb_tree_seek, .write = map_browser__write, }, .map = map, }; struct rb_node *nd; char tmp[BITS_PER_LONG / 4]; u64 maxaddr = 0; for (nd = rb_first(mb.b.entries); nd; nd = rb_next(nd)) { struct symbol *pos = rb_entry(nd, struct symbol, rb_node); if (maxaddr < pos->end) maxaddr = pos->end; if (verbose) { u32 *idx = symbol__browser_index(pos); *idx = mb.b.nr_entries; } ++mb.b.nr_entries; } mb.addrlen = snprintf(tmp, sizeof(tmp), "%" PRIx64, maxaddr); return map_browser__run(&mb); } age (Expand)AuthorFilesLines on value='5'>5space:mode:
authorThomas Gleixner <tglx@linutronix.de>2017-01-31 23:58:38 +0100
committerIngo Molnar <mingo@kernel.org>2017-02-01 08:37:27 +0100
commitdd86e373e09fb16b83e8adf5c48c421a4ca76468 (patch)
tree55703c2ea8584e303e342090614e0aab3509ab21 /fs/adfs/Kconfig
parent0b3589be9b98994ce3d5aeca52445d1f5627c4ba (diff)
perf/x86/intel/rapl: Make package handling more robust
The package management code in RAPL relies on package mapping being available before a CPU is started. This changed with: 9d85eb9119f4 ("x86/smpboot: Make logical package management more robust") because the ACPI/BIOS information turned out to be unreliable, but that left RAPL in broken state. This was not noticed because on a regular boot all CPUs are online before RAPL is initialized. A possible fix would be to reintroduce the mess which allocates a package data structure in CPU prepare and when it turns out to already exist in starting throw it away later in the CPU online callback. But that's a horrible hack and not required at all because RAPL becomes functional for perf only in the CPU online callback. That's correct because user space is not yet informed about the CPU being onlined, so nothing caan rely on RAPL being available on that particular CPU. Move the allocation to the CPU online callback and simplify the hotplug handling. At this point the package mapping is established and correct. This also adds a missing check for available package data in the event_init() function. Reported-by: Yasuaki Ishimatsu <yasu.isimatu@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sebastian Siewior <bigeasy@linutronix.de> Cc: Stephane Eranian <eranian@google.com> Cc: Vince Weaver <vincent.weaver@maine.edu> Fixes: 9d85eb9119f4 ("x86/smpboot: Make logical package management more robust") Link: http://lkml.kernel.org/r/20170131230141.212593966@linutronix.de Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'fs/adfs/Kconfig')