Home | History | Annotate | Download | only in x86_64
      1 kernel_ulong_t
      2 shuffle_scno(kernel_ulong_t scno)
      3 {
      4 	if (current_personality == 2)
      5 		scno ^= __X32_SYSCALL_BIT;
      6 
      7 	return scno;
      8 }
      9