• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 static inline const char *
nr_prefix(kernel_ulong_t scno)2 nr_prefix(kernel_ulong_t scno)
3 {
4 	/*
5 	 * For now, the set of syscalls that are shuffled is equivalent to the
6 	 * set of syscalls that have __ARM_NR_ prefix.
7 	 */
8 	if (shuffle_scno(scno) != scno)
9 		return "__ARM_NR_";
10 	else
11 		return "__NR_";
12 }
13