mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-10-31 08:44:41 +00:00 
			
		
		
		
	perf tools: Export normalize_arch() function
Export normalize_arch() function, so other part of perf can get normalized form of arch string. Signed-off-by: He Kuang <hekuang@huawei.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Ekaterina Tumanova <tumanova@linux.vnet.ibm.com> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Kan Liang <kan.liang@intel.com> Cc: Masami Hiramatsu <mhiramat@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Pekka Enberg <penberg@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Cc: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/r/1464924803-22214-10-git-send-email-hekuang@huawei.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
		
							parent
							
								
									f6d725324a
								
							
						
					
					
						commit
						940e6987fc
					
				
					 2 changed files with 2 additions and 1 deletions
				
			
		|  | @ -102,7 +102,7 @@ static int lookup_triplets(const char *const *triplets, const char *name) | ||||||
|  * Return architecture name in a normalized form. |  * Return architecture name in a normalized form. | ||||||
|  * The conversion logic comes from the Makefile. |  * The conversion logic comes from the Makefile. | ||||||
|  */ |  */ | ||||||
| static const char *normalize_arch(char *arch) | const char *normalize_arch(char *arch) | ||||||
| { | { | ||||||
| 	if (!strcmp(arch, "x86_64")) | 	if (!strcmp(arch, "x86_64")) | ||||||
| 		return "x86"; | 		return "x86"; | ||||||
|  |  | ||||||
|  | @ -6,5 +6,6 @@ | ||||||
| extern const char *objdump_path; | extern const char *objdump_path; | ||||||
| 
 | 
 | ||||||
| int perf_env__lookup_objdump(struct perf_env *env); | int perf_env__lookup_objdump(struct perf_env *env); | ||||||
|  | const char *normalize_arch(char *arch); | ||||||
| 
 | 
 | ||||||
| #endif /* ARCH_PERF_COMMON_H */ | #endif /* ARCH_PERF_COMMON_H */ | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 He Kuang
						He Kuang