mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	To be consistent with other HAVE_XXX_SUPPORT uses in Makefile.config, this patch renames HAVE_SYSCALL_TABLE to HAVE_SYSCALL_TABLE_SUPPORT and updates the C code accordingly. Signed-off-by: Jin Yao <yao.jin@linux.intel.com> Suggested-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Andi Kleen <ak@linux.intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Link: http://lkml.kernel.org/r/1523269609-28824-3-git-send-email-yao.jin@linux.intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			55 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/sh
 | 
						|
# SPDX-License-Identifier: GPL-2.0
 | 
						|
 | 
						|
echo "/* Automatically generated by $0 */
 | 
						|
struct cmdname_help
 | 
						|
{
 | 
						|
    char name[16];
 | 
						|
    char help[80];
 | 
						|
};
 | 
						|
 | 
						|
static struct cmdname_help common_cmds[] = {"
 | 
						|
 | 
						|
sed -n -e 's/^perf-\([^ 	]*\)[ 	].* common.*/\1/p' command-list.txt |
 | 
						|
sort |
 | 
						|
while read cmd
 | 
						|
do
 | 
						|
     sed -n '
 | 
						|
     /^NAME/,/perf-'"$cmd"'/H
 | 
						|
     ${
 | 
						|
            x
 | 
						|
            s/.*perf-'"$cmd"' - \(.*\)/  {"'"$cmd"'", "\1"},/
 | 
						|
	    p
 | 
						|
     }' "Documentation/perf-$cmd.txt"
 | 
						|
done
 | 
						|
 | 
						|
echo "#ifdef HAVE_LIBELF_SUPPORT"
 | 
						|
sed -n -e 's/^perf-\([^ 	]*\)[ 	].* full.*/\1/p' command-list.txt |
 | 
						|
sort |
 | 
						|
while read cmd
 | 
						|
do
 | 
						|
     sed -n '
 | 
						|
     /^NAME/,/perf-'"$cmd"'/H
 | 
						|
     ${
 | 
						|
            x
 | 
						|
            s/.*perf-'"$cmd"' - \(.*\)/  {"'"$cmd"'", "\1"},/
 | 
						|
	    p
 | 
						|
     }' "Documentation/perf-$cmd.txt"
 | 
						|
done
 | 
						|
echo "#endif /* HAVE_LIBELF_SUPPORT */"
 | 
						|
 | 
						|
echo "#if defined(HAVE_LIBAUDIT_SUPPORT) || defined(HAVE_SYSCALL_TABLE_SUPPORT)"
 | 
						|
sed -n -e 's/^perf-\([^ 	]*\)[ 	].* audit*/\1/p' command-list.txt |
 | 
						|
sort |
 | 
						|
while read cmd
 | 
						|
do
 | 
						|
     sed -n '
 | 
						|
     /^NAME/,/perf-'"$cmd"'/H
 | 
						|
     ${
 | 
						|
            x
 | 
						|
            s/.*perf-'"$cmd"' - \(.*\)/  {"'"$cmd"'", "\1"},/
 | 
						|
	    p
 | 
						|
     }' "Documentation/perf-$cmd.txt"
 | 
						|
done
 | 
						|
echo "#endif /* HAVE_LIBELF_SUPPORT */"
 | 
						|
echo "};"
 |