Search notes:

kernel/sys_ni.c

kernel/sys_ni.c implements the «syscall» for unimplemented syscalls:
asmlinkage long sys_ni_syscall(void) {
   return -ENOSYS;
}

Index