Contributors: 9
	  
        
          | Author | 
          Tokens | 
          Token Proportion | 
          Commits | 
          Commit Proportion | 
        
	  
	  
        
        
          | Arnaldo Carvalho de Melo | 
          231 | 
          74.04% | 
          6 | 
          35.29% | 
        
        
          | Ingo Molnar | 
          42 | 
          13.46% | 
          3 | 
          17.65% | 
        
        
          | Ian Rogers | 
          15 | 
          4.81% | 
          2 | 
          11.76% | 
        
        
          | David Ahern | 
          14 | 
          4.49% | 
          1 | 
          5.88% | 
        
        
          | Jiri Olsa | 
          3 | 
          0.96% | 
          1 | 
          5.88% | 
        
        
          | Yunlong Song | 
          2 | 
          0.64% | 
          1 | 
          5.88% | 
        
        
          | Thomas Gleixner | 
          2 | 
          0.64% | 
          1 | 
          5.88% | 
        
        
          | Wang Nan | 
          2 | 
          0.64% | 
          1 | 
          5.88% | 
        
        
          | Josh Poimboeuf | 
          1 | 
          0.32% | 
          1 | 
          5.88% | 
        
	  
	  
        
          | Total | 
          312 | 
           | 
          17 | 
           | 
	    
	  
    
 
// SPDX-License-Identifier: GPL-2.0-only
/*
 * builtin-kallsyms.c
 *
 * Builtin command: Look for a symbol in the running kernel and its modules
 *
 * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
 */
#include <inttypes.h>
#include "builtin.h"
#include <linux/compiler.h>
#include <subcmd/parse-options.h>
#include "debug.h"
#include "dso.h"
#include "machine.h"
#include "map.h"
#include "symbol.h"
static int __cmd_kallsyms(int argc, const char **argv)
{
	int i;
	struct machine *machine = machine__new_kallsyms();
	if (machine == NULL) {
		pr_err("Couldn't read /proc/kallsyms\n");
		return -1;
	}
	for (i = 0; i < argc; ++i) {
		struct map *map;
		const struct dso *dso;
		struct symbol *symbol = machine__find_kernel_symbol_by_name(machine, argv[i], &map);
		if (symbol == NULL) {
			printf("%s: not found\n", argv[i]);
			continue;
		}
		dso = map__dso(map);
		printf("%s: %s %s %#" PRIx64 "-%#" PRIx64 " (%#" PRIx64 "-%#" PRIx64")\n",
			symbol->name, dso->short_name, dso->long_name,
			map__unmap_ip(map, symbol->start), map__unmap_ip(map, symbol->end),
			symbol->start, symbol->end);
	}
	machine__delete(machine);
	return 0;
}
int cmd_kallsyms(int argc, const char **argv)
{
	const struct option options[] = {
	OPT_INCR('v', "verbose", &verbose, "be more verbose (show counter open errors, etc)"),
	OPT_END()
	};
	const char * const kallsyms_usage[] = {
		"perf kallsyms [<options>] symbol_name",
		NULL
	};
	argc = parse_options(argc, argv, options, kallsyms_usage, 0);
	if (argc < 1)
		usage_with_options(kallsyms_usage, options);
	symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
	if (symbol__init(NULL) < 0)
		return -1;
	return __cmd_kallsyms(argc, argv);
}