mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	The __SYSCALL macro's arguments are system call number, system call entry name and number of arguments for the system call. Argument- nargs in __SYSCALL(nr, entry, nargs) is neither calculated nor used anywhere. So it would be better to keep the implementation as __SYSCALL(nr, entry). This unifies the implementation with some other architectures too. Link: http://lkml.kernel.org/r/1546443445-21075-2-git-send-email-firoz.khan@linaro.org Signed-off-by: Firoz Khan <firoz.khan@linaro.org> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Cc: Simon Horman <horms+renesas@verge.net.au> Cc: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Philippe Ombredanne <pombredanne@nexb.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Kate Stewart <kstewart@linuxfoundation.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
# SPDX-License-Identifier: GPL-2.0
 | 
						|
 | 
						|
in="$1"
 | 
						|
out="$2"
 | 
						|
my_abis=`echo "($3)" | tr ',' '|'`
 | 
						|
my_abi="$4"
 | 
						|
offset="$5"
 | 
						|
 | 
						|
emit() {
 | 
						|
	t_nxt="$1"
 | 
						|
	t_nr="$2"
 | 
						|
	t_entry="$3"
 | 
						|
 | 
						|
	while [ $t_nxt -lt $t_nr ]; do
 | 
						|
		printf "__SYSCALL(%s,sys_ni_syscall)\n" "${t_nxt}"
 | 
						|
		t_nxt=$((t_nxt+1))
 | 
						|
	done
 | 
						|
	printf "__SYSCALL(%s,%s)\n" "${t_nxt}" "${t_entry}"
 | 
						|
}
 | 
						|
 | 
						|
grep -E "^[0-9A-Fa-fXx]+[[:space:]]+${my_abis}" "$in" | sort -n | (
 | 
						|
	nxt=0
 | 
						|
	if [ -z "$offset" ]; then
 | 
						|
		offset=0
 | 
						|
	fi
 | 
						|
 | 
						|
	while read nr abi name entry ; do
 | 
						|
		emit $((nxt+offset)) $((nr+offset)) $entry
 | 
						|
		nxt=$((nr+1))
 | 
						|
	done
 | 
						|
) > "$out"
 |