PERFORCE change 99175 for review

John Baldwin jhb at FreeBSD.org
Tue Jun 13 21:45:01 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=99175

Change 99175 by jhb at jhb_mutex on 2006/06/13 21:41:39

	IFC @99173.  Loopback the linker stuff from today.

Affected files ...

.. //depot/projects/smpng/sys/amd64/linux32/linux32_proto.h#7 integrate
.. //depot/projects/smpng/sys/amd64/linux32/linux32_syscall.h#7 integrate
.. //depot/projects/smpng/sys/amd64/linux32/linux32_sysent.c#7 integrate
.. //depot/projects/smpng/sys/amd64/linux32/syscalls.master#7 integrate
.. //depot/projects/smpng/sys/i386/linux/linux_proto.h#25 integrate
.. //depot/projects/smpng/sys/i386/linux/linux_syscall.h#24 integrate
.. //depot/projects/smpng/sys/i386/linux/linux_sysent.c#25 integrate
.. //depot/projects/smpng/sys/i386/linux/syscalls.master#25 integrate
.. //depot/projects/smpng/sys/kern/kern_linker.c#69 integrate
.. //depot/projects/smpng/sys/kern/subr_firmware.c#10 integrate
.. //depot/projects/smpng/sys/sparc64/conf/DEFAULTS#4 integrate
.. //depot/projects/smpng/sys/sparc64/include/_bus.h#2 integrate
.. //depot/projects/smpng/sys/sparc64/include/bus.h#27 integrate
.. //depot/projects/smpng/sys/sys/syscallsubr.h#28 integrate

Differences ...

==== //depot/projects/smpng/sys/amd64/linux32/linux32_proto.h#7 (text+ko) ====

@@ -2,8 +2,8 @@
  * System call prototypes.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $FreeBSD: src/sys/amd64/linux32/linux32_proto.h,v 1.11 2006/05/10 18:19:51 netchild Exp $
- * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.9 2006/05/10 18:17:28 netchild Exp 
+ * $FreeBSD: src/sys/amd64/linux32/linux32_proto.h,v 1.12 2006/06/13 18:48:29 netchild Exp $
+ * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.10 2006/06/13 18:43:55 netchild Exp 
  */
 
 #ifndef _LINUX_SYSPROTO_H_

==== //depot/projects/smpng/sys/amd64/linux32/linux32_syscall.h#7 (text+ko) ====

@@ -2,8 +2,8 @@
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $FreeBSD: src/sys/amd64/linux32/linux32_syscall.h,v 1.11 2006/05/10 18:19:51 netchild Exp $
- * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.9 2006/05/10 18:17:28 netchild Exp 
+ * $FreeBSD: src/sys/amd64/linux32/linux32_syscall.h,v 1.12 2006/06/13 18:48:29 netchild Exp $
+ * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.10 2006/06/13 18:43:55 netchild Exp 
  */
 
 #define	LINUX_SYS_exit	1
@@ -221,4 +221,4 @@
 #define	LINUX_SYS_linux_fremovexattr	237
 #define	LINUX_SYS_linux_fadvise64	250
 #define	LINUX_SYS_exit_group	252
-#define	LINUX_SYS_MAXSYSCALL	268
+#define	LINUX_SYS_MAXSYSCALL	311

==== //depot/projects/smpng/sys/amd64/linux32/linux32_sysent.c#7 (text+ko) ====

@@ -2,8 +2,8 @@
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.11 2006/05/10 18:19:51 netchild Exp $
- * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.9 2006/05/10 18:17:28 netchild Exp 
+ * $FreeBSD: src/sys/amd64/linux32/linux32_sysent.c,v 1.12 2006/06/13 18:48:29 netchild Exp $
+ * created from FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.10 2006/06/13 18:43:55 netchild Exp 
  */
 
 #include <bsm/audit_kevents.h>
@@ -21,178 +21,178 @@
 struct sysent linux_sysent[] = {
 #define	nosys	linux_nosys
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 0 = setup */
-	{ SYF_MPSAFE | AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_NULL },	/* 1 = exit */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_fork, AUE_NULL },	/* 2 = linux_fork */
+	{ SYF_MPSAFE | AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT },	/* 1 = exit */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_fork, AUE_FORK },	/* 2 = linux_fork */
 	{ SYF_MPSAFE | AS(read_args), (sy_call_t *)read, AUE_NULL },	/* 3 = read */
 	{ SYF_MPSAFE | AS(write_args), (sy_call_t *)write, AUE_NULL },	/* 4 = write */
-	{ SYF_MPSAFE | AS(linux_open_args), (sy_call_t *)linux_open, AUE_NULL },	/* 5 = linux_open */
-	{ SYF_MPSAFE | AS(close_args), (sy_call_t *)close, AUE_NULL },	/* 6 = close */
-	{ SYF_MPSAFE | AS(linux_waitpid_args), (sy_call_t *)linux_waitpid, AUE_NULL },	/* 7 = linux_waitpid */
-	{ SYF_MPSAFE | AS(linux_creat_args), (sy_call_t *)linux_creat, AUE_NULL },	/* 8 = linux_creat */
-	{ SYF_MPSAFE | AS(linux_link_args), (sy_call_t *)linux_link, AUE_NULL },	/* 9 = linux_link */
-	{ SYF_MPSAFE | AS(linux_unlink_args), (sy_call_t *)linux_unlink, AUE_NULL },	/* 10 = linux_unlink */
-	{ SYF_MPSAFE | AS(linux_execve_args), (sy_call_t *)linux_execve, AUE_NULL },	/* 11 = linux_execve */
-	{ SYF_MPSAFE | AS(linux_chdir_args), (sy_call_t *)linux_chdir, AUE_NULL },	/* 12 = linux_chdir */
+	{ SYF_MPSAFE | AS(linux_open_args), (sy_call_t *)linux_open, AUE_OPEN_RWTC },	/* 5 = linux_open */
+	{ SYF_MPSAFE | AS(close_args), (sy_call_t *)close, AUE_CLOSE },	/* 6 = close */
+	{ SYF_MPSAFE | AS(linux_waitpid_args), (sy_call_t *)linux_waitpid, AUE_WAIT4 },	/* 7 = linux_waitpid */
+	{ SYF_MPSAFE | AS(linux_creat_args), (sy_call_t *)linux_creat, AUE_O_CREAT },	/* 8 = linux_creat */
+	{ SYF_MPSAFE | AS(linux_link_args), (sy_call_t *)linux_link, AUE_LINK },	/* 9 = linux_link */
+	{ SYF_MPSAFE | AS(linux_unlink_args), (sy_call_t *)linux_unlink, AUE_UNLINK },	/* 10 = linux_unlink */
+	{ SYF_MPSAFE | AS(linux_execve_args), (sy_call_t *)linux_execve, AUE_EXECVE },	/* 11 = linux_execve */
+	{ SYF_MPSAFE | AS(linux_chdir_args), (sy_call_t *)linux_chdir, AUE_CHDIR },	/* 12 = linux_chdir */
 	{ SYF_MPSAFE | AS(linux_time_args), (sy_call_t *)linux_time, AUE_NULL },	/* 13 = linux_time */
-	{ SYF_MPSAFE | AS(linux_mknod_args), (sy_call_t *)linux_mknod, AUE_NULL },	/* 14 = linux_mknod */
-	{ SYF_MPSAFE | AS(linux_chmod_args), (sy_call_t *)linux_chmod, AUE_NULL },	/* 15 = linux_chmod */
-	{ SYF_MPSAFE | AS(linux_lchown16_args), (sy_call_t *)linux_lchown16, AUE_NULL },	/* 16 = linux_lchown16 */
+	{ SYF_MPSAFE | AS(linux_mknod_args), (sy_call_t *)linux_mknod, AUE_MKNOD },	/* 14 = linux_mknod */
+	{ SYF_MPSAFE | AS(linux_chmod_args), (sy_call_t *)linux_chmod, AUE_CHMOD },	/* 15 = linux_chmod */
+	{ SYF_MPSAFE | AS(linux_lchown16_args), (sy_call_t *)linux_lchown16, AUE_LCHOWN },	/* 16 = linux_lchown16 */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 17 = break */
-	{ SYF_MPSAFE | AS(linux_stat_args), (sy_call_t *)linux_stat, AUE_NULL },	/* 18 = linux_stat */
-	{ SYF_MPSAFE | AS(linux_lseek_args), (sy_call_t *)linux_lseek, AUE_NULL },	/* 19 = linux_lseek */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getpid, AUE_NULL },	/* 20 = linux_getpid */
-	{ AS(linux_mount_args), (sy_call_t *)linux_mount, AUE_NULL },	/* 21 = linux_mount */
-	{ AS(linux_oldumount_args), (sy_call_t *)linux_oldumount, AUE_NULL },	/* 22 = linux_oldumount */
-	{ SYF_MPSAFE | AS(linux_setuid16_args), (sy_call_t *)linux_setuid16, AUE_NULL },	/* 23 = linux_setuid16 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getuid16, AUE_NULL },	/* 24 = linux_getuid16 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_stime, AUE_NULL },	/* 25 = linux_stime */
-	{ SYF_MPSAFE | AS(linux_ptrace_args), (sy_call_t *)linux_ptrace, AUE_NULL },	/* 26 = linux_ptrace */
+	{ SYF_MPSAFE | AS(linux_stat_args), (sy_call_t *)linux_stat, AUE_STAT },	/* 18 = linux_stat */
+	{ SYF_MPSAFE | AS(linux_lseek_args), (sy_call_t *)linux_lseek, AUE_LSEEK },	/* 19 = linux_lseek */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getpid, AUE_GETPID },	/* 20 = linux_getpid */
+	{ AS(linux_mount_args), (sy_call_t *)linux_mount, AUE_MOUNT },	/* 21 = linux_mount */
+	{ AS(linux_oldumount_args), (sy_call_t *)linux_oldumount, AUE_UMOUNT },	/* 22 = linux_oldumount */
+	{ SYF_MPSAFE | AS(linux_setuid16_args), (sy_call_t *)linux_setuid16, AUE_SETUID },	/* 23 = linux_setuid16 */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getuid16, AUE_GETUID },	/* 24 = linux_getuid16 */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_stime, AUE_SETTIMEOFDAY },	/* 25 = linux_stime */
+	{ SYF_MPSAFE | AS(linux_ptrace_args), (sy_call_t *)linux_ptrace, AUE_PTRACE },	/* 26 = linux_ptrace */
 	{ SYF_MPSAFE | AS(linux_alarm_args), (sy_call_t *)linux_alarm, AUE_NULL },	/* 27 = linux_alarm */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 28 = fstat */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_pause, AUE_NULL },	/* 29 = linux_pause */
-	{ SYF_MPSAFE | AS(linux_utime_args), (sy_call_t *)linux_utime, AUE_NULL },	/* 30 = linux_utime */
+	{ SYF_MPSAFE | AS(linux_utime_args), (sy_call_t *)linux_utime, AUE_UTIME },	/* 30 = linux_utime */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 31 = stty */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 32 = gtty */
-	{ SYF_MPSAFE | AS(linux_access_args), (sy_call_t *)linux_access, AUE_NULL },	/* 33 = linux_access */
-	{ SYF_MPSAFE | AS(linux_nice_args), (sy_call_t *)linux_nice, AUE_NULL },	/* 34 = linux_nice */
+	{ SYF_MPSAFE | AS(linux_access_args), (sy_call_t *)linux_access, AUE_ACCESS },	/* 33 = linux_access */
+	{ SYF_MPSAFE | AS(linux_nice_args), (sy_call_t *)linux_nice, AUE_NICE },	/* 34 = linux_nice */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 35 = ftime */
-	{ SYF_MPSAFE | 0, (sy_call_t *)sync, AUE_NULL },	/* 36 = sync */
-	{ SYF_MPSAFE | AS(linux_kill_args), (sy_call_t *)linux_kill, AUE_NULL },	/* 37 = linux_kill */
-	{ SYF_MPSAFE | AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_NULL },	/* 38 = linux_rename */
-	{ SYF_MPSAFE | AS(linux_mkdir_args), (sy_call_t *)linux_mkdir, AUE_NULL },	/* 39 = linux_mkdir */
-	{ SYF_MPSAFE | AS(linux_rmdir_args), (sy_call_t *)linux_rmdir, AUE_NULL },	/* 40 = linux_rmdir */
-	{ SYF_MPSAFE | AS(dup_args), (sy_call_t *)dup, AUE_NULL },	/* 41 = dup */
-	{ SYF_MPSAFE | AS(linux_pipe_args), (sy_call_t *)linux_pipe, AUE_NULL },	/* 42 = linux_pipe */
+	{ SYF_MPSAFE | 0, (sy_call_t *)sync, AUE_SYNC },	/* 36 = sync */
+	{ SYF_MPSAFE | AS(linux_kill_args), (sy_call_t *)linux_kill, AUE_KILL },	/* 37 = linux_kill */
+	{ SYF_MPSAFE | AS(linux_rename_args), (sy_call_t *)linux_rename, AUE_RENAME },	/* 38 = linux_rename */
+	{ SYF_MPSAFE | AS(linux_mkdir_args), (sy_call_t *)linux_mkdir, AUE_MKDIR },	/* 39 = linux_mkdir */
+	{ SYF_MPSAFE | AS(linux_rmdir_args), (sy_call_t *)linux_rmdir, AUE_RMDIR },	/* 40 = linux_rmdir */
+	{ SYF_MPSAFE | AS(dup_args), (sy_call_t *)dup, AUE_DUP },	/* 41 = dup */
+	{ SYF_MPSAFE | AS(linux_pipe_args), (sy_call_t *)linux_pipe, AUE_PIPE },	/* 42 = linux_pipe */
 	{ SYF_MPSAFE | AS(linux_times_args), (sy_call_t *)linux_times, AUE_NULL },	/* 43 = linux_times */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 44 = prof */
 	{ AS(linux_brk_args), (sy_call_t *)linux_brk, AUE_NULL },	/* 45 = linux_brk */
-	{ SYF_MPSAFE | AS(linux_setgid16_args), (sy_call_t *)linux_setgid16, AUE_NULL },	/* 46 = linux_setgid16 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getgid16, AUE_NULL },	/* 47 = linux_getgid16 */
+	{ SYF_MPSAFE | AS(linux_setgid16_args), (sy_call_t *)linux_setgid16, AUE_SETGID },	/* 46 = linux_setgid16 */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getgid16, AUE_GETGID },	/* 47 = linux_getgid16 */
 	{ SYF_MPSAFE | AS(linux_signal_args), (sy_call_t *)linux_signal, AUE_NULL },	/* 48 = linux_signal */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_geteuid16, AUE_NULL },	/* 49 = linux_geteuid16 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getegid16, AUE_NULL },	/* 50 = linux_getegid16 */
-	{ SYF_MPSAFE | AS(acct_args), (sy_call_t *)acct, AUE_NULL },	/* 51 = acct */
-	{ AS(linux_umount_args), (sy_call_t *)linux_umount, AUE_NULL },	/* 52 = linux_umount */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_geteuid16, AUE_GETEUID },	/* 49 = linux_geteuid16 */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getegid16, AUE_GETEGID },	/* 50 = linux_getegid16 */
+	{ SYF_MPSAFE | AS(acct_args), (sy_call_t *)acct, AUE_ACCT },	/* 51 = acct */
+	{ AS(linux_umount_args), (sy_call_t *)linux_umount, AUE_UMOUNT },	/* 52 = linux_umount */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 53 = lock */
-	{ AS(linux_ioctl_args), (sy_call_t *)linux_ioctl, AUE_NULL },	/* 54 = linux_ioctl */
-	{ SYF_MPSAFE | AS(linux_fcntl_args), (sy_call_t *)linux_fcntl, AUE_NULL },	/* 55 = linux_fcntl */
+	{ AS(linux_ioctl_args), (sy_call_t *)linux_ioctl, AUE_IOCTL },	/* 54 = linux_ioctl */
+	{ SYF_MPSAFE | AS(linux_fcntl_args), (sy_call_t *)linux_fcntl, AUE_FCNTL },	/* 55 = linux_fcntl */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 56 = mpx */
-	{ SYF_MPSAFE | AS(setpgid_args), (sy_call_t *)setpgid, AUE_NULL },	/* 57 = setpgid */
+	{ SYF_MPSAFE | AS(setpgid_args), (sy_call_t *)setpgid, AUE_SETPGRP },	/* 57 = setpgid */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 58 = ulimit */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_olduname, AUE_NULL },	/* 59 = linux_olduname */
-	{ SYF_MPSAFE | AS(umask_args), (sy_call_t *)umask, AUE_NULL },	/* 60 = umask */
-	{ SYF_MPSAFE | AS(chroot_args), (sy_call_t *)chroot, AUE_NULL },	/* 61 = chroot */
+	{ SYF_MPSAFE | AS(umask_args), (sy_call_t *)umask, AUE_UMASK },	/* 60 = umask */
+	{ SYF_MPSAFE | AS(chroot_args), (sy_call_t *)chroot, AUE_CHROOT },	/* 61 = chroot */
 	{ SYF_MPSAFE | AS(linux_ustat_args), (sy_call_t *)linux_ustat, AUE_NULL },	/* 62 = linux_ustat */
-	{ SYF_MPSAFE | AS(dup2_args), (sy_call_t *)dup2, AUE_NULL },	/* 63 = dup2 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)getppid, AUE_NULL },	/* 64 = getppid */
-	{ SYF_MPSAFE | 0, (sy_call_t *)getpgrp, AUE_NULL },	/* 65 = getpgrp */
-	{ SYF_MPSAFE | 0, (sy_call_t *)setsid, AUE_NULL },	/* 66 = setsid */
+	{ SYF_MPSAFE | AS(dup2_args), (sy_call_t *)dup2, AUE_DUP2 },	/* 63 = dup2 */
+	{ SYF_MPSAFE | 0, (sy_call_t *)getppid, AUE_GETPPID },	/* 64 = getppid */
+	{ SYF_MPSAFE | 0, (sy_call_t *)getpgrp, AUE_GETPGRP },	/* 65 = getpgrp */
+	{ SYF_MPSAFE | 0, (sy_call_t *)setsid, AUE_SETSID },	/* 66 = setsid */
 	{ SYF_MPSAFE | AS(linux_sigaction_args), (sy_call_t *)linux_sigaction, AUE_NULL },	/* 67 = linux_sigaction */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_sgetmask, AUE_NULL },	/* 68 = linux_sgetmask */
 	{ SYF_MPSAFE | AS(linux_ssetmask_args), (sy_call_t *)linux_ssetmask, AUE_NULL },	/* 69 = linux_ssetmask */
-	{ SYF_MPSAFE | AS(linux_setreuid16_args), (sy_call_t *)linux_setreuid16, AUE_NULL },	/* 70 = linux_setreuid16 */
-	{ SYF_MPSAFE | AS(linux_setregid16_args), (sy_call_t *)linux_setregid16, AUE_NULL },	/* 71 = linux_setregid16 */
+	{ SYF_MPSAFE | AS(linux_setreuid16_args), (sy_call_t *)linux_setreuid16, AUE_SETREUID },	/* 70 = linux_setreuid16 */
+	{ SYF_MPSAFE | AS(linux_setregid16_args), (sy_call_t *)linux_setregid16, AUE_SETREGID },	/* 71 = linux_setregid16 */
 	{ SYF_MPSAFE | AS(linux_sigsuspend_args), (sy_call_t *)linux_sigsuspend, AUE_NULL },	/* 72 = linux_sigsuspend */
 	{ SYF_MPSAFE | AS(linux_sigpending_args), (sy_call_t *)linux_sigpending, AUE_NULL },	/* 73 = linux_sigpending */
-	{ SYF_MPSAFE | AS(linux_sethostname_args), (sy_call_t *)linux_sethostname, AUE_NULL },	/* 74 = linux_sethostname */
-	{ SYF_MPSAFE | AS(linux_setrlimit_args), (sy_call_t *)linux_setrlimit, AUE_NULL },	/* 75 = linux_setrlimit */
-	{ SYF_MPSAFE | AS(linux_old_getrlimit_args), (sy_call_t *)linux_old_getrlimit, AUE_NULL },	/* 76 = linux_old_getrlimit */
-	{ SYF_MPSAFE | AS(linux_getrusage_args), (sy_call_t *)linux_getrusage, AUE_NULL },	/* 77 = linux_getrusage */
+	{ SYF_MPSAFE | AS(linux_sethostname_args), (sy_call_t *)linux_sethostname, AUE_SYSCTL },	/* 74 = linux_sethostname */
+	{ SYF_MPSAFE | AS(linux_setrlimit_args), (sy_call_t *)linux_setrlimit, AUE_SETRLIMIT },	/* 75 = linux_setrlimit */
+	{ SYF_MPSAFE | AS(linux_old_getrlimit_args), (sy_call_t *)linux_old_getrlimit, AUE_GETRLIMIT },	/* 76 = linux_old_getrlimit */
+	{ SYF_MPSAFE | AS(linux_getrusage_args), (sy_call_t *)linux_getrusage, AUE_GETRUSAGE },	/* 77 = linux_getrusage */
 	{ SYF_MPSAFE | AS(linux_gettimeofday_args), (sy_call_t *)linux_gettimeofday, AUE_NULL },	/* 78 = linux_gettimeofday */
-	{ SYF_MPSAFE | AS(linux_settimeofday_args), (sy_call_t *)linux_settimeofday, AUE_NULL },	/* 79 = linux_settimeofday */
-	{ SYF_MPSAFE | AS(linux_getgroups16_args), (sy_call_t *)linux_getgroups16, AUE_NULL },	/* 80 = linux_getgroups16 */
-	{ SYF_MPSAFE | AS(linux_setgroups16_args), (sy_call_t *)linux_setgroups16, AUE_NULL },	/* 81 = linux_setgroups16 */
-	{ SYF_MPSAFE | AS(linux_old_select_args), (sy_call_t *)linux_old_select, AUE_NULL },	/* 82 = linux_old_select */
-	{ SYF_MPSAFE | AS(linux_symlink_args), (sy_call_t *)linux_symlink, AUE_NULL },	/* 83 = linux_symlink */
-	{ SYF_MPSAFE | AS(linux_lstat_args), (sy_call_t *)linux_lstat, AUE_NULL },	/* 84 = linux_lstat */
-	{ SYF_MPSAFE | AS(linux_readlink_args), (sy_call_t *)linux_readlink, AUE_NULL },	/* 85 = linux_readlink */
+	{ SYF_MPSAFE | AS(linux_settimeofday_args), (sy_call_t *)linux_settimeofday, AUE_SETTIMEOFDAY },	/* 79 = linux_settimeofday */
+	{ SYF_MPSAFE | AS(linux_getgroups16_args), (sy_call_t *)linux_getgroups16, AUE_GETGROUPS },	/* 80 = linux_getgroups16 */
+	{ SYF_MPSAFE | AS(linux_setgroups16_args), (sy_call_t *)linux_setgroups16, AUE_SETGROUPS },	/* 81 = linux_setgroups16 */
+	{ SYF_MPSAFE | AS(linux_old_select_args), (sy_call_t *)linux_old_select, AUE_SELECT },	/* 82 = linux_old_select */
+	{ SYF_MPSAFE | AS(linux_symlink_args), (sy_call_t *)linux_symlink, AUE_SYMLINK },	/* 83 = linux_symlink */
+	{ SYF_MPSAFE | AS(linux_lstat_args), (sy_call_t *)linux_lstat, AUE_LSTAT },	/* 84 = linux_lstat */
+	{ SYF_MPSAFE | AS(linux_readlink_args), (sy_call_t *)linux_readlink, AUE_READLINK },	/* 85 = linux_readlink */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 86 = linux_uselib */
-	{ SYF_MPSAFE | AS(swapon_args), (sy_call_t *)swapon, AUE_NULL },	/* 87 = swapon */
-	{ SYF_MPSAFE | AS(linux_reboot_args), (sy_call_t *)linux_reboot, AUE_NULL },	/* 88 = linux_reboot */
-	{ AS(linux_readdir_args), (sy_call_t *)linux_readdir, AUE_NULL },	/* 89 = linux_readdir */
-	{ SYF_MPSAFE | AS(linux_mmap_args), (sy_call_t *)linux_mmap, AUE_NULL },	/* 90 = linux_mmap */
-	{ SYF_MPSAFE | AS(munmap_args), (sy_call_t *)munmap, AUE_NULL },	/* 91 = munmap */
-	{ SYF_MPSAFE | AS(linux_truncate_args), (sy_call_t *)linux_truncate, AUE_NULL },	/* 92 = linux_truncate */
-	{ SYF_MPSAFE | AS(linux_ftruncate_args), (sy_call_t *)linux_ftruncate, AUE_NULL },	/* 93 = linux_ftruncate */
-	{ SYF_MPSAFE | AS(fchmod_args), (sy_call_t *)fchmod, AUE_NULL },	/* 94 = fchmod */
-	{ SYF_MPSAFE | AS(fchown_args), (sy_call_t *)fchown, AUE_NULL },	/* 95 = fchown */
-	{ SYF_MPSAFE | AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_NULL },	/* 96 = linux_getpriority */
-	{ SYF_MPSAFE | AS(setpriority_args), (sy_call_t *)setpriority, AUE_NULL },	/* 97 = setpriority */
+	{ SYF_MPSAFE | AS(swapon_args), (sy_call_t *)swapon, AUE_SWAPON },	/* 87 = swapon */
+	{ SYF_MPSAFE | AS(linux_reboot_args), (sy_call_t *)linux_reboot, AUE_REBOOT },	/* 88 = linux_reboot */
+	{ AS(linux_readdir_args), (sy_call_t *)linux_readdir, AUE_O_GETDENTS },	/* 89 = linux_readdir */
+	{ SYF_MPSAFE | AS(linux_mmap_args), (sy_call_t *)linux_mmap, AUE_MMAP },	/* 90 = linux_mmap */
+	{ SYF_MPSAFE | AS(munmap_args), (sy_call_t *)munmap, AUE_MUNMAP },	/* 91 = munmap */
+	{ SYF_MPSAFE | AS(linux_truncate_args), (sy_call_t *)linux_truncate, AUE_TRUNCATE },	/* 92 = linux_truncate */
+	{ SYF_MPSAFE | AS(linux_ftruncate_args), (sy_call_t *)linux_ftruncate, AUE_FTRUNCATE },	/* 93 = linux_ftruncate */
+	{ SYF_MPSAFE | AS(fchmod_args), (sy_call_t *)fchmod, AUE_FCHMOD },	/* 94 = fchmod */
+	{ SYF_MPSAFE | AS(fchown_args), (sy_call_t *)fchown, AUE_FCHOWN },	/* 95 = fchown */
+	{ SYF_MPSAFE | AS(linux_getpriority_args), (sy_call_t *)linux_getpriority, AUE_GETPRIORITY },	/* 96 = linux_getpriority */
+	{ SYF_MPSAFE | AS(setpriority_args), (sy_call_t *)setpriority, AUE_SETPRIORITY },	/* 97 = setpriority */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 98 = profil */
-	{ SYF_MPSAFE | AS(linux_statfs_args), (sy_call_t *)linux_statfs, AUE_NULL },	/* 99 = linux_statfs */
-	{ SYF_MPSAFE | AS(linux_fstatfs_args), (sy_call_t *)linux_fstatfs, AUE_NULL },	/* 100 = linux_fstatfs */
+	{ SYF_MPSAFE | AS(linux_statfs_args), (sy_call_t *)linux_statfs, AUE_STATFS },	/* 99 = linux_statfs */
+	{ SYF_MPSAFE | AS(linux_fstatfs_args), (sy_call_t *)linux_fstatfs, AUE_FSTATFS },	/* 100 = linux_fstatfs */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 101 = ioperm */
 	{ SYF_MPSAFE | AS(linux_socketcall_args), (sy_call_t *)linux_socketcall, AUE_NULL },	/* 102 = linux_socketcall */
 	{ SYF_MPSAFE | AS(linux_syslog_args), (sy_call_t *)linux_syslog, AUE_NULL },	/* 103 = linux_syslog */
-	{ SYF_MPSAFE | AS(linux_setitimer_args), (sy_call_t *)linux_setitimer, AUE_NULL },	/* 104 = linux_setitimer */
-	{ SYF_MPSAFE | AS(linux_getitimer_args), (sy_call_t *)linux_getitimer, AUE_NULL },	/* 105 = linux_getitimer */
-	{ SYF_MPSAFE | AS(linux_newstat_args), (sy_call_t *)linux_newstat, AUE_NULL },	/* 106 = linux_newstat */
-	{ SYF_MPSAFE | AS(linux_newlstat_args), (sy_call_t *)linux_newlstat, AUE_NULL },	/* 107 = linux_newlstat */
-	{ SYF_MPSAFE | AS(linux_newfstat_args), (sy_call_t *)linux_newfstat, AUE_NULL },	/* 108 = linux_newfstat */
+	{ SYF_MPSAFE | AS(linux_setitimer_args), (sy_call_t *)linux_setitimer, AUE_SETITIMER },	/* 104 = linux_setitimer */
+	{ SYF_MPSAFE | AS(linux_getitimer_args), (sy_call_t *)linux_getitimer, AUE_GETITIMER },	/* 105 = linux_getitimer */
+	{ SYF_MPSAFE | AS(linux_newstat_args), (sy_call_t *)linux_newstat, AUE_STAT },	/* 106 = linux_newstat */
+	{ SYF_MPSAFE | AS(linux_newlstat_args), (sy_call_t *)linux_newlstat, AUE_LSTAT },	/* 107 = linux_newlstat */
+	{ SYF_MPSAFE | AS(linux_newfstat_args), (sy_call_t *)linux_newfstat, AUE_FSTAT },	/* 108 = linux_newfstat */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_uname, AUE_NULL },	/* 109 = linux_uname */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 110 = iopl */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_vhangup, AUE_NULL },	/* 111 = linux_vhangup */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 112 = idle */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 113 = vm86old */
-	{ SYF_MPSAFE | AS(linux_wait4_args), (sy_call_t *)linux_wait4, AUE_NULL },	/* 114 = linux_wait4 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_swapoff, AUE_NULL },	/* 115 = linux_swapoff */
+	{ SYF_MPSAFE | AS(linux_wait4_args), (sy_call_t *)linux_wait4, AUE_WAIT4 },	/* 114 = linux_wait4 */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_swapoff, AUE_SWAPOFF },	/* 115 = linux_swapoff */
 	{ SYF_MPSAFE | AS(linux_sysinfo_args), (sy_call_t *)linux_sysinfo, AUE_NULL },	/* 116 = linux_sysinfo */
 	{ AS(linux_ipc_args), (sy_call_t *)linux_ipc, AUE_NULL },	/* 117 = linux_ipc */
-	{ SYF_MPSAFE | AS(fsync_args), (sy_call_t *)fsync, AUE_NULL },	/* 118 = fsync */
-	{ SYF_MPSAFE | AS(linux_sigreturn_args), (sy_call_t *)linux_sigreturn, AUE_NULL },	/* 119 = linux_sigreturn */
-	{ SYF_MPSAFE | AS(linux_clone_args), (sy_call_t *)linux_clone, AUE_NULL },	/* 120 = linux_clone */
-	{ SYF_MPSAFE | AS(setdomainname_args), (sy_call_t *)setdomainname, AUE_NULL },	/* 121 = setdomainname */
+	{ SYF_MPSAFE | AS(fsync_args), (sy_call_t *)fsync, AUE_FSYNC },	/* 118 = fsync */
+	{ SYF_MPSAFE | AS(linux_sigreturn_args), (sy_call_t *)linux_sigreturn, AUE_SIGRETURN },	/* 119 = linux_sigreturn */
+	{ SYF_MPSAFE | AS(linux_clone_args), (sy_call_t *)linux_clone, AUE_RFORK },	/* 120 = linux_clone */
+	{ SYF_MPSAFE | AS(setdomainname_args), (sy_call_t *)setdomainname, AUE_SYSCTL },	/* 121 = setdomainname */
 	{ SYF_MPSAFE | AS(linux_newuname_args), (sy_call_t *)linux_newuname, AUE_NULL },	/* 122 = linux_newuname */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 123 = modify_ldt */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_adjtimex, AUE_NULL },	/* 124 = linux_adjtimex */
-	{ SYF_MPSAFE | AS(linux_mprotect_args), (sy_call_t *)linux_mprotect, AUE_NULL },	/* 125 = linux_mprotect */
-	{ SYF_MPSAFE | AS(linux_sigprocmask_args), (sy_call_t *)linux_sigprocmask, AUE_NULL },	/* 126 = linux_sigprocmask */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_adjtimex, AUE_ADJTIME },	/* 124 = linux_adjtimex */
+	{ SYF_MPSAFE | AS(linux_mprotect_args), (sy_call_t *)linux_mprotect, AUE_MPROTECT },	/* 125 = linux_mprotect */
+	{ SYF_MPSAFE | AS(linux_sigprocmask_args), (sy_call_t *)linux_sigprocmask, AUE_SIGPROCMASK },	/* 126 = linux_sigprocmask */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_create_module, AUE_NULL },	/* 127 = linux_create_module */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_init_module, AUE_NULL },	/* 128 = linux_init_module */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_delete_module, AUE_NULL },	/* 129 = linux_delete_module */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_get_kernel_syms, AUE_NULL },	/* 130 = linux_get_kernel_syms */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_quotactl, AUE_NULL },	/* 131 = linux_quotactl */
-	{ SYF_MPSAFE | AS(getpgid_args), (sy_call_t *)getpgid, AUE_NULL },	/* 132 = getpgid */
-	{ SYF_MPSAFE | AS(fchdir_args), (sy_call_t *)fchdir, AUE_NULL },	/* 133 = fchdir */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_bdflush, AUE_NULL },	/* 134 = linux_bdflush */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_quotactl, AUE_QUOTACTL },	/* 131 = linux_quotactl */
+	{ SYF_MPSAFE | AS(getpgid_args), (sy_call_t *)getpgid, AUE_GETPGID },	/* 132 = getpgid */
+	{ SYF_MPSAFE | AS(fchdir_args), (sy_call_t *)fchdir, AUE_FCHDIR },	/* 133 = fchdir */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_bdflush, AUE_BDFLUSH },	/* 134 = linux_bdflush */
 	{ SYF_MPSAFE | AS(linux_sysfs_args), (sy_call_t *)linux_sysfs, AUE_NULL },	/* 135 = linux_sysfs */
-	{ SYF_MPSAFE | AS(linux_personality_args), (sy_call_t *)linux_personality, AUE_NULL },	/* 136 = linux_personality */
+	{ SYF_MPSAFE | AS(linux_personality_args), (sy_call_t *)linux_personality, AUE_PERSONALITY },	/* 136 = linux_personality */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 137 = afs_syscall */
-	{ SYF_MPSAFE | AS(linux_setfsuid16_args), (sy_call_t *)linux_setfsuid16, AUE_NULL },	/* 138 = linux_setfsuid16 */
-	{ SYF_MPSAFE | AS(linux_setfsgid16_args), (sy_call_t *)linux_setfsgid16, AUE_NULL },	/* 139 = linux_setfsgid16 */
-	{ SYF_MPSAFE | AS(linux_llseek_args), (sy_call_t *)linux_llseek, AUE_NULL },	/* 140 = linux_llseek */
-	{ AS(linux_getdents_args), (sy_call_t *)linux_getdents, AUE_NULL },	/* 141 = linux_getdents */
-	{ SYF_MPSAFE | AS(linux_select_args), (sy_call_t *)linux_select, AUE_NULL },	/* 142 = linux_select */
-	{ SYF_MPSAFE | AS(flock_args), (sy_call_t *)flock, AUE_NULL },	/* 143 = flock */
-	{ SYF_MPSAFE | AS(linux_msync_args), (sy_call_t *)linux_msync, AUE_NULL },	/* 144 = linux_msync */
-	{ SYF_MPSAFE | AS(linux_readv_args), (sy_call_t *)linux_readv, AUE_NULL },	/* 145 = linux_readv */
-	{ SYF_MPSAFE | AS(linux_writev_args), (sy_call_t *)linux_writev, AUE_NULL },	/* 146 = linux_writev */
-	{ SYF_MPSAFE | AS(linux_getsid_args), (sy_call_t *)linux_getsid, AUE_NULL },	/* 147 = linux_getsid */
+	{ SYF_MPSAFE | AS(linux_setfsuid16_args), (sy_call_t *)linux_setfsuid16, AUE_SETFSUID },	/* 138 = linux_setfsuid16 */
+	{ SYF_MPSAFE | AS(linux_setfsgid16_args), (sy_call_t *)linux_setfsgid16, AUE_SETFSGID },	/* 139 = linux_setfsgid16 */
+	{ SYF_MPSAFE | AS(linux_llseek_args), (sy_call_t *)linux_llseek, AUE_LSEEK },	/* 140 = linux_llseek */
+	{ AS(linux_getdents_args), (sy_call_t *)linux_getdents, AUE_O_GETDENTS },	/* 141 = linux_getdents */
+	{ SYF_MPSAFE | AS(linux_select_args), (sy_call_t *)linux_select, AUE_SELECT },	/* 142 = linux_select */
+	{ SYF_MPSAFE | AS(flock_args), (sy_call_t *)flock, AUE_FLOCK },	/* 143 = flock */
+	{ SYF_MPSAFE | AS(linux_msync_args), (sy_call_t *)linux_msync, AUE_MSYNC },	/* 144 = linux_msync */
+	{ SYF_MPSAFE | AS(linux_readv_args), (sy_call_t *)linux_readv, AUE_READV },	/* 145 = linux_readv */
+	{ SYF_MPSAFE | AS(linux_writev_args), (sy_call_t *)linux_writev, AUE_WRITEV },	/* 146 = linux_writev */
+	{ SYF_MPSAFE | AS(linux_getsid_args), (sy_call_t *)linux_getsid, AUE_GETSID },	/* 147 = linux_getsid */
 	{ SYF_MPSAFE | AS(linux_fdatasync_args), (sy_call_t *)linux_fdatasync, AUE_NULL },	/* 148 = linux_fdatasync */
-	{ SYF_MPSAFE | AS(linux_sysctl_args), (sy_call_t *)linux_sysctl, AUE_NULL },	/* 149 = linux_sysctl */
-	{ SYF_MPSAFE | AS(mlock_args), (sy_call_t *)mlock, AUE_NULL },	/* 150 = mlock */
-	{ SYF_MPSAFE | AS(munlock_args), (sy_call_t *)munlock, AUE_NULL },	/* 151 = munlock */
-	{ SYF_MPSAFE | AS(mlockall_args), (sy_call_t *)mlockall, AUE_NULL },	/* 152 = mlockall */
-	{ SYF_MPSAFE | 0, (sy_call_t *)munlockall, AUE_NULL },	/* 153 = munlockall */
-	{ SYF_MPSAFE | AS(sched_setparam_args), (sy_call_t *)sched_setparam, AUE_NULL },	/* 154 = sched_setparam */
-	{ SYF_MPSAFE | AS(sched_getparam_args), (sy_call_t *)sched_getparam, AUE_NULL },	/* 155 = sched_getparam */
-	{ SYF_MPSAFE | AS(linux_sched_setscheduler_args), (sy_call_t *)linux_sched_setscheduler, AUE_NULL },	/* 156 = linux_sched_setscheduler */
-	{ SYF_MPSAFE | AS(linux_sched_getscheduler_args), (sy_call_t *)linux_sched_getscheduler, AUE_NULL },	/* 157 = linux_sched_getscheduler */
+	{ SYF_MPSAFE | AS(linux_sysctl_args), (sy_call_t *)linux_sysctl, AUE_SYSCTL },	/* 149 = linux_sysctl */
+	{ SYF_MPSAFE | AS(mlock_args), (sy_call_t *)mlock, AUE_MLOCK },	/* 150 = mlock */
+	{ SYF_MPSAFE | AS(munlock_args), (sy_call_t *)munlock, AUE_MUNLOCK },	/* 151 = munlock */
+	{ SYF_MPSAFE | AS(mlockall_args), (sy_call_t *)mlockall, AUE_MLOCKALL },	/* 152 = mlockall */
+	{ SYF_MPSAFE | 0, (sy_call_t *)munlockall, AUE_MUNLOCKALL },	/* 153 = munlockall */
+	{ SYF_MPSAFE | AS(sched_setparam_args), (sy_call_t *)sched_setparam, AUE_SCHED_SETPARAM },	/* 154 = sched_setparam */
+	{ SYF_MPSAFE | AS(sched_getparam_args), (sy_call_t *)sched_getparam, AUE_SCHED_GETPARAM },	/* 155 = sched_getparam */
+	{ SYF_MPSAFE | AS(linux_sched_setscheduler_args), (sy_call_t *)linux_sched_setscheduler, AUE_SCHED_SETSCHEDULER },	/* 156 = linux_sched_setscheduler */
+	{ SYF_MPSAFE | AS(linux_sched_getscheduler_args), (sy_call_t *)linux_sched_getscheduler, AUE_SCHED_GETSCHEDULER },	/* 157 = linux_sched_getscheduler */
 	{ SYF_MPSAFE | 0, (sy_call_t *)sched_yield, AUE_NULL },	/* 158 = sched_yield */
-	{ SYF_MPSAFE | AS(linux_sched_get_priority_max_args), (sy_call_t *)linux_sched_get_priority_max, AUE_NULL },	/* 159 = linux_sched_get_priority_max */
-	{ SYF_MPSAFE | AS(linux_sched_get_priority_min_args), (sy_call_t *)linux_sched_get_priority_min, AUE_NULL },	/* 160 = linux_sched_get_priority_min */
-	{ SYF_MPSAFE | AS(linux_sched_rr_get_interval_args), (sy_call_t *)linux_sched_rr_get_interval, AUE_NULL },	/* 161 = linux_sched_rr_get_interval */
+	{ SYF_MPSAFE | AS(linux_sched_get_priority_max_args), (sy_call_t *)linux_sched_get_priority_max, AUE_SCHED_GET_PRIORITY_MAX },	/* 159 = linux_sched_get_priority_max */
+	{ SYF_MPSAFE | AS(linux_sched_get_priority_min_args), (sy_call_t *)linux_sched_get_priority_min, AUE_SCHED_GET_PRIORITY_MIN },	/* 160 = linux_sched_get_priority_min */
+	{ SYF_MPSAFE | AS(linux_sched_rr_get_interval_args), (sy_call_t *)linux_sched_rr_get_interval, AUE_SCHED_RR_GET_INTERVAL },	/* 161 = linux_sched_rr_get_interval */
 	{ SYF_MPSAFE | AS(linux_nanosleep_args), (sy_call_t *)linux_nanosleep, AUE_NULL },	/* 162 = linux_nanosleep */
 	{ SYF_MPSAFE | AS(linux_mremap_args), (sy_call_t *)linux_mremap, AUE_NULL },	/* 163 = linux_mremap */
-	{ SYF_MPSAFE | AS(linux_setresuid16_args), (sy_call_t *)linux_setresuid16, AUE_NULL },	/* 164 = linux_setresuid16 */
-	{ SYF_MPSAFE | AS(linux_getresuid16_args), (sy_call_t *)linux_getresuid16, AUE_NULL },	/* 165 = linux_getresuid16 */
+	{ SYF_MPSAFE | AS(linux_setresuid16_args), (sy_call_t *)linux_setresuid16, AUE_SETRESUID },	/* 164 = linux_setresuid16 */
+	{ SYF_MPSAFE | AS(linux_getresuid16_args), (sy_call_t *)linux_getresuid16, AUE_GETRESUID },	/* 165 = linux_getresuid16 */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 166 = vm86 */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_query_module, AUE_NULL },	/* 167 = linux_query_module */
-	{ SYF_MPSAFE | AS(poll_args), (sy_call_t *)poll, AUE_NULL },	/* 168 = poll */
+	{ SYF_MPSAFE | AS(poll_args), (sy_call_t *)poll, AUE_POLL },	/* 168 = poll */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_nfsservctl, AUE_NULL },	/* 169 = linux_nfsservctl */
-	{ SYF_MPSAFE | AS(linux_setresgid16_args), (sy_call_t *)linux_setresgid16, AUE_NULL },	/* 170 = linux_setresgid16 */
-	{ SYF_MPSAFE | AS(linux_getresgid16_args), (sy_call_t *)linux_getresgid16, AUE_NULL },	/* 171 = linux_getresgid16 */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_prctl, AUE_NULL },	/* 172 = linux_prctl */
+	{ SYF_MPSAFE | AS(linux_setresgid16_args), (sy_call_t *)linux_setresgid16, AUE_SETRESGID },	/* 170 = linux_setresgid16 */
+	{ SYF_MPSAFE | AS(linux_getresgid16_args), (sy_call_t *)linux_getresgid16, AUE_GETRESGID },	/* 171 = linux_getresgid16 */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_prctl, AUE_PRCTL },	/* 172 = linux_prctl */
 	{ SYF_MPSAFE | AS(linux_rt_sigreturn_args), (sy_call_t *)linux_rt_sigreturn, AUE_NULL },	/* 173 = linux_rt_sigreturn */
 	{ SYF_MPSAFE | AS(linux_rt_sigaction_args), (sy_call_t *)linux_rt_sigaction, AUE_NULL },	/* 174 = linux_rt_sigaction */
 	{ SYF_MPSAFE | AS(linux_rt_sigprocmask_args), (sy_call_t *)linux_rt_sigprocmask, AUE_NULL },	/* 175 = linux_rt_sigprocmask */
@@ -200,48 +200,48 @@
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_rt_sigtimedwait, AUE_NULL },	/* 177 = linux_rt_sigtimedwait */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_rt_sigqueueinfo, AUE_NULL },	/* 178 = linux_rt_sigqueueinfo */
 	{ SYF_MPSAFE | AS(linux_rt_sigsuspend_args), (sy_call_t *)linux_rt_sigsuspend, AUE_NULL },	/* 179 = linux_rt_sigsuspend */
-	{ SYF_MPSAFE | AS(linux_pread_args), (sy_call_t *)linux_pread, AUE_NULL },	/* 180 = linux_pread */
-	{ SYF_MPSAFE | AS(linux_pwrite_args), (sy_call_t *)linux_pwrite, AUE_NULL },	/* 181 = linux_pwrite */
-	{ SYF_MPSAFE | AS(linux_chown16_args), (sy_call_t *)linux_chown16, AUE_NULL },	/* 182 = linux_chown16 */
-	{ SYF_MPSAFE | AS(linux_getcwd_args), (sy_call_t *)linux_getcwd, AUE_NULL },	/* 183 = linux_getcwd */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_capget, AUE_NULL },	/* 184 = linux_capget */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_capset, AUE_NULL },	/* 185 = linux_capset */
+	{ SYF_MPSAFE | AS(linux_pread_args), (sy_call_t *)linux_pread, AUE_PREAD },	/* 180 = linux_pread */
+	{ SYF_MPSAFE | AS(linux_pwrite_args), (sy_call_t *)linux_pwrite, AUE_PWRITE },	/* 181 = linux_pwrite */
+	{ SYF_MPSAFE | AS(linux_chown16_args), (sy_call_t *)linux_chown16, AUE_CHOWN },	/* 182 = linux_chown16 */
+	{ SYF_MPSAFE | AS(linux_getcwd_args), (sy_call_t *)linux_getcwd, AUE_GETCWD },	/* 183 = linux_getcwd */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_capget, AUE_CAPGET },	/* 184 = linux_capget */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_capset, AUE_CAPSET },	/* 185 = linux_capset */
 	{ SYF_MPSAFE | AS(linux_sigaltstack_args), (sy_call_t *)linux_sigaltstack, AUE_NULL },	/* 186 = linux_sigaltstack */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_sendfile, AUE_NULL },	/* 187 = linux_sendfile */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_sendfile, AUE_SENDFILE },	/* 187 = linux_sendfile */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 188 = getpmsg */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 189 = putpmsg */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_vfork, AUE_NULL },	/* 190 = linux_vfork */
-	{ SYF_MPSAFE | AS(linux_getrlimit_args), (sy_call_t *)linux_getrlimit, AUE_NULL },	/* 191 = linux_getrlimit */
-	{ SYF_MPSAFE | AS(linux_mmap2_args), (sy_call_t *)linux_mmap2, AUE_NULL },	/* 192 = linux_mmap2 */
-	{ SYF_MPSAFE | AS(linux_truncate64_args), (sy_call_t *)linux_truncate64, AUE_NULL },	/* 193 = linux_truncate64 */
-	{ SYF_MPSAFE | AS(linux_ftruncate64_args), (sy_call_t *)linux_ftruncate64, AUE_NULL },	/* 194 = linux_ftruncate64 */
-	{ SYF_MPSAFE | AS(linux_stat64_args), (sy_call_t *)linux_stat64, AUE_NULL },	/* 195 = linux_stat64 */
-	{ SYF_MPSAFE | AS(linux_lstat64_args), (sy_call_t *)linux_lstat64, AUE_NULL },	/* 196 = linux_lstat64 */
-	{ SYF_MPSAFE | AS(linux_fstat64_args), (sy_call_t *)linux_fstat64, AUE_NULL },	/* 197 = linux_fstat64 */
-	{ SYF_MPSAFE | AS(linux_lchown_args), (sy_call_t *)linux_lchown, AUE_NULL },	/* 198 = linux_lchown */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getuid, AUE_NULL },	/* 199 = linux_getuid */
-	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getgid, AUE_NULL },	/* 200 = linux_getgid */
-	{ SYF_MPSAFE | 0, (sy_call_t *)geteuid, AUE_NULL },	/* 201 = geteuid */
-	{ SYF_MPSAFE | 0, (sy_call_t *)getegid, AUE_NULL },	/* 202 = getegid */
-	{ SYF_MPSAFE | AS(setreuid_args), (sy_call_t *)setreuid, AUE_NULL },	/* 203 = setreuid */
-	{ SYF_MPSAFE | AS(setregid_args), (sy_call_t *)setregid, AUE_NULL },	/* 204 = setregid */
-	{ SYF_MPSAFE | AS(linux_getgroups_args), (sy_call_t *)linux_getgroups, AUE_NULL },	/* 205 = linux_getgroups */
-	{ SYF_MPSAFE | AS(linux_setgroups_args), (sy_call_t *)linux_setgroups, AUE_NULL },	/* 206 = linux_setgroups */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_vfork, AUE_VFORK },	/* 190 = linux_vfork */
+	{ SYF_MPSAFE | AS(linux_getrlimit_args), (sy_call_t *)linux_getrlimit, AUE_GETRLIMIT },	/* 191 = linux_getrlimit */
+	{ SYF_MPSAFE | AS(linux_mmap2_args), (sy_call_t *)linux_mmap2, AUE_MMAP },	/* 192 = linux_mmap2 */
+	{ SYF_MPSAFE | AS(linux_truncate64_args), (sy_call_t *)linux_truncate64, AUE_TRUNCATE },	/* 193 = linux_truncate64 */
+	{ SYF_MPSAFE | AS(linux_ftruncate64_args), (sy_call_t *)linux_ftruncate64, AUE_FTRUNCATE },	/* 194 = linux_ftruncate64 */
+	{ SYF_MPSAFE | AS(linux_stat64_args), (sy_call_t *)linux_stat64, AUE_STAT },	/* 195 = linux_stat64 */
+	{ SYF_MPSAFE | AS(linux_lstat64_args), (sy_call_t *)linux_lstat64, AUE_LSTAT },	/* 196 = linux_lstat64 */
+	{ SYF_MPSAFE | AS(linux_fstat64_args), (sy_call_t *)linux_fstat64, AUE_FSTAT },	/* 197 = linux_fstat64 */
+	{ SYF_MPSAFE | AS(linux_lchown_args), (sy_call_t *)linux_lchown, AUE_LCHOWN },	/* 198 = linux_lchown */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getuid, AUE_GETUID },	/* 199 = linux_getuid */
+	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getgid, AUE_GETGID },	/* 200 = linux_getgid */
+	{ SYF_MPSAFE | 0, (sy_call_t *)geteuid, AUE_GETEUID },	/* 201 = geteuid */
+	{ SYF_MPSAFE | 0, (sy_call_t *)getegid, AUE_GETEGID },	/* 202 = getegid */
+	{ SYF_MPSAFE | AS(setreuid_args), (sy_call_t *)setreuid, AUE_SETREUID },	/* 203 = setreuid */
+	{ SYF_MPSAFE | AS(setregid_args), (sy_call_t *)setregid, AUE_SETREGID },	/* 204 = setregid */
+	{ SYF_MPSAFE | AS(linux_getgroups_args), (sy_call_t *)linux_getgroups, AUE_GETGROUPS },	/* 205 = linux_getgroups */
+	{ SYF_MPSAFE | AS(linux_setgroups_args), (sy_call_t *)linux_setgroups, AUE_SETGROUPS },	/* 206 = linux_setgroups */
 	{ AS(fchown_args), (sy_call_t *)fchown, AUE_NULL },	/* 207 = fchown */
-	{ SYF_MPSAFE | AS(setresuid_args), (sy_call_t *)setresuid, AUE_NULL },	/* 208 = setresuid */
-	{ SYF_MPSAFE | AS(getresuid_args), (sy_call_t *)getresuid, AUE_NULL },	/* 209 = getresuid */
-	{ SYF_MPSAFE | AS(setresgid_args), (sy_call_t *)setresgid, AUE_NULL },	/* 210 = setresgid */
-	{ SYF_MPSAFE | AS(getresgid_args), (sy_call_t *)getresgid, AUE_NULL },	/* 211 = getresgid */
-	{ SYF_MPSAFE | AS(linux_chown_args), (sy_call_t *)linux_chown, AUE_NULL },	/* 212 = linux_chown */
-	{ SYF_MPSAFE | AS(setuid_args), (sy_call_t *)setuid, AUE_NULL },	/* 213 = setuid */
-	{ SYF_MPSAFE | AS(setgid_args), (sy_call_t *)setgid, AUE_NULL },	/* 214 = setgid */
-	{ SYF_MPSAFE | AS(linux_setfsuid_args), (sy_call_t *)linux_setfsuid, AUE_NULL },	/* 215 = linux_setfsuid */
-	{ SYF_MPSAFE | AS(linux_setfsgid_args), (sy_call_t *)linux_setfsgid, AUE_NULL },	/* 216 = linux_setfsgid */
-	{ SYF_MPSAFE | AS(linux_pivot_root_args), (sy_call_t *)linux_pivot_root, AUE_NULL },	/* 217 = linux_pivot_root */
-	{ SYF_MPSAFE | AS(linux_mincore_args), (sy_call_t *)linux_mincore, AUE_NULL },	/* 218 = linux_mincore */
-	{ SYF_MPSAFE | AS(madvise_args), (sy_call_t *)madvise, AUE_NULL },	/* 219 = madvise */
-	{ AS(linux_getdents64_args), (sy_call_t *)linux_getdents64, AUE_NULL },	/* 220 = linux_getdents64 */
-	{ SYF_MPSAFE | AS(linux_fcntl64_args), (sy_call_t *)linux_fcntl64, AUE_NULL },	/* 221 = linux_fcntl64 */
+	{ SYF_MPSAFE | AS(setresuid_args), (sy_call_t *)setresuid, AUE_SETRESUID },	/* 208 = setresuid */
+	{ SYF_MPSAFE | AS(getresuid_args), (sy_call_t *)getresuid, AUE_GETRESUID },	/* 209 = getresuid */
+	{ SYF_MPSAFE | AS(setresgid_args), (sy_call_t *)setresgid, AUE_SETRESGID },	/* 210 = setresgid */
+	{ SYF_MPSAFE | AS(getresgid_args), (sy_call_t *)getresgid, AUE_GETRESGID },	/* 211 = getresgid */
+	{ SYF_MPSAFE | AS(linux_chown_args), (sy_call_t *)linux_chown, AUE_CHOWN },	/* 212 = linux_chown */
+	{ SYF_MPSAFE | AS(setuid_args), (sy_call_t *)setuid, AUE_SETUID },	/* 213 = setuid */
+	{ SYF_MPSAFE | AS(setgid_args), (sy_call_t *)setgid, AUE_SETGID },	/* 214 = setgid */
+	{ SYF_MPSAFE | AS(linux_setfsuid_args), (sy_call_t *)linux_setfsuid, AUE_SETFSUID },	/* 215 = linux_setfsuid */
+	{ SYF_MPSAFE | AS(linux_setfsgid_args), (sy_call_t *)linux_setfsgid, AUE_SETFSGID },	/* 216 = linux_setfsgid */
+	{ SYF_MPSAFE | AS(linux_pivot_root_args), (sy_call_t *)linux_pivot_root, AUE_PIVOT_ROOT },	/* 217 = linux_pivot_root */
+	{ SYF_MPSAFE | AS(linux_mincore_args), (sy_call_t *)linux_mincore, AUE_MINCORE },	/* 218 = linux_mincore */
+	{ SYF_MPSAFE | AS(madvise_args), (sy_call_t *)madvise, AUE_MADVISE },	/* 219 = madvise */
+	{ AS(linux_getdents64_args), (sy_call_t *)linux_getdents64, AUE_O_GETDENTS },	/* 220 = linux_getdents64 */
+	{ SYF_MPSAFE | AS(linux_fcntl64_args), (sy_call_t *)linux_fcntl64, AUE_FCNTL },	/* 221 = linux_fcntl64 */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 222 =  */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 223 =  */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_getpid, AUE_NULL },	/* 224 = gettid */
@@ -272,7 +272,7 @@
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 249 = linux_io_cancel */
 	{ SYF_MPSAFE | 0, (sy_call_t *)linux_fadvise64, AUE_NULL },	/* 250 = linux_fadvise64 */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 251 =  */
-	{ SYF_MPSAFE | AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_NULL },	/* 252 = exit_group */
+	{ SYF_MPSAFE | AS(sys_exit_args), (sy_call_t *)sys_exit, AUE_EXIT },	/* 252 = exit_group */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 253 = linux_lookup_dcookie */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 254 = linux_epoll_create */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 255 = linux_epoll_ctl */
@@ -288,4 +288,47 @@
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 265 = linux_clock_gettime */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 266 = linux_clock_getres */
 	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 267 = linux_clock_nanosleep */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 268 = linux_statfs64 */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 269 = linux_fstatfs64 */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 270 = linux_tgkill */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 271 = linux_utimes */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 272 = linux_fadvise64_64 */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 273 = linux_ni_syscall */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 274 = linux_mbind */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 275 = linux_get_mempolicy */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 276 = linux_set_mempolicy */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 277 = linux_mq_open */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 278 = linux_mq_unlink */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 279 = linux_mq_timedsend */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 280 = linux_mq_timedreceive */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 281 = linux_mq_notify */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 282 = linux_mq_getsetattr */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 283 = linux_kexec_load */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 284 = linux_waitid */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 285 = linux_ni_syscall */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 286 = linux_add_key */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 287 = linux_request_key */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 288 = linux_keyctl */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 289 = linux_ioprio_set */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 290 = linux_ioprio_get */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 291 = linux_inotify_init */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 292 = linux_inotify_add_watch */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 293 = linux_inotify_rm_watch */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 294 = linux_migrate_pages */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 295 = linux_openat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 296 = linux_mkdirat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 297 = linux_mknodat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 298 = linux_fchownat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 299 = linux_futimesat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 300 = linux_fstatat64 */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 301 = linux_unlinkat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 302 = linux_renameat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 303 = linux_linkat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 304 = linux_symlinkat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 305 = linux_readlinkat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 306 = linux_fchmodat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 307 = linux_faccessat */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 308 = linux_pselect6 */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 309 = linux_ppoll */
+	{ 0, (sy_call_t *)nosys, AUE_NULL },			/* 310 = linux_unshare */
 };

==== //depot/projects/smpng/sys/amd64/linux32/syscalls.master#7 (text+ko) ====

@@ -1,10 +1,10 @@
- $FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.9 2006/05/10 18:17:28 netchild Exp $
+ $FreeBSD: src/sys/amd64/linux32/syscalls.master,v 1.10 2006/06/13 18:43:55 netchild Exp $
 
 ;	@(#)syscalls.master	8.1 (Berkeley) 7/19/93
 ; System call name/number master file (or rather, slave, from LINUX).
 ; Processed to create linux_sysent.c, linux_proto.h and linux_syscall.h.
 
-; Columns: number type nargs name alt{name,tag,rtyp}/comments
+; Columns: number audit type nargs name alt{name,tag,rtyp}/comments
 ;	number	system call number, must be in order
 ;	audit	the audit event associated with the system call
 ;		A value of AUE_NULL means no auditing, but it also means that
@@ -14,15 +14,20 @@
 ;	type	one of STD, OBSOL, UNIMPL
 ;	name	psuedo-prototype of syscall routine
 ;		If one of the following alts is different, then all appear:
+;	audit   the audit event associated with the system call
+;		A value of AUE_NULL means no auditing, but it also means that
+;		there is no audit event for the call at this time. For the
+;		case where the event exists, but we don't want auditing, the
+;		event should be #defined to AUE_NULL in audit_kevents.h.
 ;	altname	name of system call if different
 ;	alttag	name of args struct tag if different from [o]`name'"_args"
 ;	altrtyp	return type if not int (bogus - syscalls always return int)
 ;		for UNIMPL/OBSOL, name continues with comments
 
 ; types:
-;	STD	always included
+;	AUE_NULL	STD	always included
 ;	OBSOL	obsolete, not included in system, only specifies name
-;	UNIMPL	not implemented, placeholder only
+;	AUE_NULL	UNIMPL	not implemented, placeholder only
 
 #include "opt_compat.h"
 #include <sys/param.h>
@@ -38,247 +43,244 @@
 ; #ifdef's, etc. may be included, and are copied to the output files.
 
 0	AUE_NULL	UNIMPL	setup
-1	AUE_NULL	MNOPROTO { void sys_exit(int rval); } exit \
+1	AUE_EXIT	MNOPROTO { void sys_exit(int rval); } exit \
 				    sys_exit_args void
-2	AUE_NULL	MSTD	{ int linux_fork(void); }
+2	AUE_FORK	MSTD	{ int linux_fork(void); }
 3	AUE_NULL	MNOPROTO { int read(int fd, char *buf, \
 				    u_int nbyte); }
 4	AUE_NULL	MNOPROTO { int write(int fd, char *buf, \
 				    u_int nbyte); }
-5	AUE_NULL	MSTD	{ int linux_open(char *path, l_int flags, \
+5	AUE_OPEN_RWTC	MSTD	{ int linux_open(char *path, l_int flags, \
 				    l_int mode); }
-6	AUE_NULL	MNOPROTO { int close(int fd); }
-7	AUE_NULL	MSTD	{ int linux_waitpid(l_pid_t pid, \
+6	AUE_CLOSE	MNOPROTO { int close(int fd); }
+7	AUE_WAIT4	MSTD	{ int linux_waitpid(l_pid_t pid, \
 				    l_int *status, l_int options); }
-8	AUE_NULL	MSTD	{ int linux_creat(char *path, l_int mode); }
-9	AUE_NULL	MSTD	{ int linux_link(char *path, char *to); }
-10	AUE_NULL	MSTD	{ int linux_unlink(char *path); }
-11	AUE_NULL	MSTD	{ int linux_execve(char *path, char **argp, \
+8	AUE_O_CREAT	MSTD	{ int linux_creat(char *path, \
+				    l_int mode); }
+9	AUE_LINK	MSTD	{ int linux_link(char *path, char *to); }
+10	AUE_UNLINK	MSTD	{ int linux_unlink(char *path); }
+11	AUE_EXECVE	MSTD	{ int linux_execve(char *path, char **argp, \
 				    char **envp); }
-12	AUE_NULL	MSTD	{ int linux_chdir(char *path); }
+12	AUE_CHDIR	MSTD	{ int linux_chdir(char *path); }
 13	AUE_NULL	MSTD	{ int linux_time(l_time_t *tm); }
-14	AUE_NULL	MSTD	{ int linux_mknod(char *path, l_int mode, \
+14	AUE_MKNOD	MSTD	{ int linux_mknod(char *path, l_int mode, \
 				    l_dev_t dev); }
-15	AUE_NULL	MSTD	{ int linux_chmod(char *path, \
+15	AUE_CHMOD	MSTD	{ int linux_chmod(char *path, \
 				    l_mode_t mode); }
-16	AUE_NULL	MSTD	{ int linux_lchown16(char *path, \
+16	AUE_LCHOWN	MSTD	{ int linux_lchown16(char *path, \
 				    l_uid16_t uid, l_gid16_t gid); }
 17	AUE_NULL	UNIMPL	break
-18	AUE_NULL	MSTD	{ int linux_stat(char *path, \
-					struct linux_stat *up); }
-19	AUE_NULL	MSTD	{ int linux_lseek(l_uint fdes, l_off_t off, \
+18	AUE_STAT	MSTD	{ int linux_stat(char *path, \
+				    struct linux_stat *up); }
+19	AUE_LSEEK	MSTD	{ int linux_lseek(l_uint fdes, l_off_t off, \
 				    l_int whence); }
-20	AUE_NULL	MSTD	{ int linux_getpid(void); }
-21	AUE_NULL	STD	{ int linux_mount(char *specialfile, \
+20	AUE_GETPID	MSTD	{ int linux_getpid(void); }
+21	AUE_MOUNT	STD	{ int linux_mount(char *specialfile, \
 				    char *dir, char *filesystemtype, \
 				    l_ulong rwflag, void *data); }
-22	AUE_NULL	STD	{ int linux_oldumount(char *path); }
-23	AUE_NULL	MSTD	{ int linux_setuid16(l_uid16_t uid); }
-24	AUE_NULL	MSTD	{ int linux_getuid16(void); }
-25	AUE_NULL	MSTD	{ int linux_stime(void); }
-26	AUE_NULL	MSTD	{ int linux_ptrace(l_long req, l_long pid, \
+22	AUE_UMOUNT	STD	{ int linux_oldumount(char *path); }
+23	AUE_SETUID	MSTD	{ int linux_setuid16(l_uid16_t uid); }
+24	AUE_GETUID	MSTD	{ int linux_getuid16(void); }
+25	AUE_SETTIMEOFDAY	MSTD	{ int linux_stime(void); }
+26	AUE_PTRACE	MSTD	{ int linux_ptrace(l_long req, l_long pid, \
 				    l_long addr, l_long data); }
 27	AUE_NULL	MSTD	{ int linux_alarm(l_uint secs); }
 28	AUE_NULL	UNIMPL	fstat
 29	AUE_NULL	MSTD	{ int linux_pause(void); }
-30	AUE_NULL	MSTD	{ int linux_utime(char *fname, \
+30	AUE_UTIME	MSTD	{ int linux_utime(char *fname, \
 				    struct l_utimbuf *times); }
 31	AUE_NULL	UNIMPL	stty
 32	AUE_NULL	UNIMPL	gtty
-33	AUE_NULL	MSTD	{ int linux_access(char *path, l_int flags); }
-34	AUE_NULL	MSTD	{ int linux_nice(l_int inc); }
+33	AUE_ACCESS	MSTD	{ int linux_access(char *path, l_int flags); }
+34	AUE_NICE	MSTD	{ int linux_nice(l_int inc); }
 35	AUE_NULL	UNIMPL	ftime
-36	AUE_NULL	MNOPROTO	{ int sync(void); }
-37	AUE_NULL	MSTD	{ int linux_kill(l_int pid, l_int signum); }
-38	AUE_NULL	MSTD	{ int linux_rename(char *from, char *to); }
-39	AUE_NULL	MSTD	{ int linux_mkdir(char *path, l_int mode); }
-40	AUE_NULL	MSTD	{ int linux_rmdir(char *path); }
-41	AUE_NULL	MNOPROTO { int dup(u_int fd); }
-42	AUE_NULL	MSTD	{ int linux_pipe(l_ulong *pipefds); }
+36	AUE_SYNC	MNOPROTO	{ int sync(void); }
+37	AUE_KILL	MSTD	{ int linux_kill(l_int pid, l_int signum); }
+38	AUE_RENAME	MSTD	{ int linux_rename(char *from, char *to); }
+39	AUE_MKDIR	MSTD	{ int linux_mkdir(char *path, l_int mode); }
+40	AUE_RMDIR	MSTD	{ int linux_rmdir(char *path); }
+41	AUE_DUP		MNOPROTO { int dup(u_int fd); }
+42	AUE_PIPE	MSTD	{ int linux_pipe(l_ulong *pipefds); }
 43	AUE_NULL	MSTD	{ int linux_times(struct l_times_argv *buf); }
 44	AUE_NULL	UNIMPL	prof
 45	AUE_NULL	STD	{ int linux_brk(l_ulong dsend); }
-46	AUE_NULL	MSTD	{ int linux_setgid16(l_gid16_t gid); }
-47	AUE_NULL	MSTD	{ int linux_getgid16(void); }
+46	AUE_SETGID	MSTD	{ int linux_setgid16(l_gid16_t gid); }
+47	AUE_GETGID	MSTD	{ int linux_getgid16(void); }
 48	AUE_NULL	MSTD	{ int linux_signal(l_int sig, \
 				    l_handler_t handler); }
-49	AUE_NULL	MSTD	{ int linux_geteuid16(void); }
-50	AUE_NULL	MSTD	{ int linux_getegid16(void); }
-51	AUE_NULL	MNOPROTO { int acct(char *path); }
-52	AUE_NULL	STD	{ int linux_umount(char *path, l_int flags); }
+49	AUE_GETEUID	MSTD	{ int linux_geteuid16(void); }
+50	AUE_GETEGID	MSTD	{ int linux_getegid16(void); }
+51	AUE_ACCT	MNOPROTO { int acct(char *path); }
+52	AUE_UMOUNT	STD	{ int linux_umount(char *path, l_int flags); }
 53	AUE_NULL	UNIMPL	lock
-54	AUE_NULL	STD	{ int linux_ioctl(l_uint fd, l_uint cmd, \
+54	AUE_IOCTL	STD	{ int linux_ioctl(l_uint fd, l_uint cmd, \
 				    uintptr_t arg); }
-55	AUE_NULL	MSTD	{ int linux_fcntl(l_uint fd, l_uint cmd, \
+55	AUE_FCNTL	MSTD	{ int linux_fcntl(l_uint fd, l_uint cmd, \
 				    uintptr_t arg); }
 56	AUE_NULL	UNIMPL	mpx
-57	AUE_NULL	MNOPROTO { int setpgid(int pid, int pgid); }
+57	AUE_SETPGRP	MNOPROTO { int setpgid(int pid, int pgid); }
 58	AUE_NULL	UNIMPL	ulimit
 59	AUE_NULL	MSTD	{ int linux_olduname(void); }
-60	AUE_NULL	MNOPROTO { int umask(int newmask); }
-61	AUE_NULL	MNOPROTO	{ int chroot(char *path); }
+60	AUE_UMASK	MNOPROTO { int umask(int newmask); }
+61	AUE_CHROOT	MNOPROTO	{ int chroot(char *path); }
 62	AUE_NULL	MSTD	{ int linux_ustat(l_dev_t dev, \
 				    struct l_ustat *ubuf); }
-63	AUE_NULL	MNOPROTO { int dup2(u_int from, u_int to); }
-64	AUE_NULL	MNOPROTO { int getppid(void); }
-65	AUE_NULL	MNOPROTO { int getpgrp(void); }
-66	AUE_NULL	MNOPROTO { int setsid(void); }
+63	AUE_DUP2	MNOPROTO { int dup2(u_int from, u_int to); }
+64	AUE_GETPPID	MNOPROTO { int getppid(void); }
+65	AUE_GETPGRP	MNOPROTO { int getpgrp(void); }
+66	AUE_SETSID	MNOPROTO { int setsid(void); }
 67	AUE_NULL	MSTD	{ int linux_sigaction(l_int sig, \
 				    l_osigaction_t *nsa, \
 				    l_osigaction_t *osa); }
 68	AUE_NULL	MSTD	{ int linux_sgetmask(void); }
 69	AUE_NULL	MSTD	{ int linux_ssetmask(l_osigset_t mask); }
-70	AUE_NULL	MSTD	{ int linux_setreuid16(l_uid16_t ruid, \
+70	AUE_SETREUID	MSTD	{ int linux_setreuid16(l_uid16_t ruid, \
 				    l_uid16_t euid); }
-71	AUE_NULL	MSTD	{ int linux_setregid16(l_gid16_t rgid, \
+71	AUE_SETREGID	MSTD	{ int linux_setregid16(l_gid16_t rgid, \
 				    l_gid16_t egid); }
 72	AUE_NULL	MSTD	{ int linux_sigsuspend(l_int hist0, \
 				    l_int hist1, l_osigset_t mask); }
 73	AUE_NULL	MSTD	{ int linux_sigpending(l_osigset_t *mask); }
-74	AUE_NULL	MSTD	{ int linux_sethostname(char *hostname, \
+74	AUE_SYSCTL	MSTD	{ int linux_sethostname(char *hostname, \
 				    u_int len); }
-75	AUE_NULL	MSTD	{ int linux_setrlimit(l_uint resource, \
+75	AUE_SETRLIMIT	MSTD	{ int linux_setrlimit(l_uint resource, \
 				    struct l_rlimit *rlim); }
-76	AUE_NULL	MSTD	{ int linux_old_getrlimit(l_uint resource, \
+76	AUE_GETRLIMIT	MSTD	{ int linux_old_getrlimit(l_uint resource, \
 				    struct l_rlimit *rlim); }
-77	AUE_NULL	MSTD	{ int linux_getrusage(int who, \
+77	AUE_GETRUSAGE	MSTD	{ int linux_getrusage(int who, \
 				    struct l_rusage *rusage); }
 78	AUE_NULL	MSTD	{ int linux_gettimeofday( \
 				    struct l_timeval *tp, \
 				    struct timezone *tzp); }
-79	AUE_NULL	MSTD	{ int linux_settimeofday( \
+79	AUE_SETTIMEOFDAY MSTD { int linux_settimeofday( \
 				    struct l_timeval *tp, \
 				    struct timezone *tzp); }
-80	AUE_NULL	MSTD	{ int linux_getgroups16(l_uint gidsetsize, \
+80	AUE_GETGROUPS	MSTD	{ int linux_getgroups16(l_uint gidsetsize, \
 				    l_gid16_t *gidset); }
-81	AUE_NULL	MSTD	{ int linux_setgroups16(l_uint gidsetsize, \
+81	AUE_SETGROUPS	MSTD	{ int linux_setgroups16(l_uint gidsetsize, \
 				    l_gid16_t *gidset); }
-82	AUE_NULL	MSTD	{ int linux_old_select( \
+82	AUE_SELECT	MSTD	{ int linux_old_select( \
 				    struct l_old_select_argv *ptr); }
-83	AUE_NULL	MSTD	{ int linux_symlink(char *path, \
-				    char *to); }
-84	AUE_NULL	MSTD    { int linux_lstat(char *path, struct linux_lstat *up); }
-85	AUE_NULL	MSTD	{ int linux_readlink(char *name, \
-				    char *buf, l_int count); }
+83	AUE_SYMLINK	MSTD	{ int linux_symlink(char *path, char *to); }
+84	AUE_LSTAT	MSTD	{ int linux_lstat(char *path, struct linux_lstat *up); }
+85	AUE_READLINK	MSTD	{ int linux_readlink(char *name, char *buf, \
+				    l_int count); }
 86	AUE_NULL	UNIMPL	linux_uselib
-87	AUE_NULL	MNOPROTO	{ int swapon(char *name); }
-88	AUE_NULL	MSTD	{ int linux_reboot(l_int magic1, \
-				    l_int magic2, l_uint cmd, \
-				void *arg); }
-89	AUE_NULL	STD	{ int linux_readdir(l_uint fd, \
+87	AUE_SWAPON	MNOPROTO	{ int swapon(char *name); }
+88	AUE_REBOOT	MSTD	{ int linux_reboot(l_int magic1, \
+				    l_int magic2, l_uint cmd, void *arg); }
+89	AUE_O_GETDENTS	STD	{ int linux_readdir(l_uint fd, \
 				    struct l_dirent *dent, l_uint count); }
-90	AUE_NULL	MSTD	{ int linux_mmap(struct l_mmap_argv *ptr); }
-91	AUE_NULL	MNOPROTO	{ int munmap(caddr_t addr, int len); }
-92	AUE_NULL	MSTD	{ int linux_truncate(char *path, \
+90	AUE_MMAP	MSTD	{ int linux_mmap(struct l_mmap_argv *ptr); }
+91	AUE_MUNMAP	MNOPROTO	{ int munmap(caddr_t addr, int len); }
+92	AUE_TRUNCATE	MSTD	{ int linux_truncate(char *path, \
 				    l_ulong length); }
-93	AUE_NULL	MSTD	{ int linux_ftruncate(int fd, long length); }
-94	AUE_NULL	MNOPROTO	{ int fchmod(int fd, int mode); }
-95	AUE_NULL	MNOPROTO	{ int fchown(int fd, int uid, int gid); }
-96	AUE_NULL	MSTD	{ int linux_getpriority(int which, int who); }
-97	AUE_NULL	MNOPROTO { int setpriority(int which, int who, \
+93	AUE_FTRUNCATE	MSTD	{ int linux_ftruncate(int fd, long length); }
+94	AUE_FCHMOD	MNOPROTO	{ int fchmod(int fd, int mode); }
+95	AUE_FCHOWN	MNOPROTO	{ int fchown(int fd, int uid, int gid); }
+96	AUE_GETPRIORITY	MSTD	{ int linux_getpriority(int which, int who); }
+97	AUE_SETPRIORITY	MNOPROTO { int setpriority(int which, int who, \
 				    int prio); }
-98	AUE_NULL	UNIMPL	profil
-99	AUE_NULL	MSTD	{ int linux_statfs(char *path, \
+98	AUE_AUE_PROFILE	UNIMPL	profil
+99	AUE_STATFS	MSTD	{ int linux_statfs(char *path, \
 				    struct l_statfs_buf *buf); }
-100	AUE_NULL	MSTD	{ int linux_fstatfs(l_uint fd, \
+100	AUE_FSTATFS	MSTD	{ int linux_fstatfs(l_uint fd, \
 				    struct l_statfs_buf *buf); }
 101	AUE_NULL	UNIMPL	ioperm
 102	AUE_NULL	MSTD	{ int linux_socketcall(l_int what, \
 				    l_ulong args); }
 103	AUE_NULL	MSTD	{ int linux_syslog(l_int type, char *buf, \
 				    l_int len); }
-104	AUE_NULL	MSTD	{ int linux_setitimer(l_int which, \
+104	AUE_SETITIMER	MSTD	{ int linux_setitimer(l_int which, \
 				    struct l_itimerval *itv, \
 				    struct l_itimerval *oitv); }
-105	AUE_NULL	MSTD	{ int linux_getitimer(l_int which, \
+105	AUE_GETITIMER	MSTD	{ int linux_getitimer(l_int which, \
 				    struct l_itimerval *itv); }
-106	AUE_NULL	MSTD	{ int linux_newstat(char *path, \
+106	AUE_STAT	MSTD	{ int linux_newstat(char *path, \
 				    struct l_newstat *buf); }
-107	AUE_NULL	MSTD	{ int linux_newlstat(char *path, \
+107	AUE_LSTAT	MSTD	{ int linux_newlstat(char *path, \
 				    struct l_newstat *buf); }
-108	AUE_NULL	MSTD	{ int linux_newfstat(l_uint fd, \
+108	AUE_FSTAT	MSTD	{ int linux_newfstat(l_uint fd, \
 				    struct l_newstat *buf); }
 109	AUE_NULL	MSTD	{ int linux_uname(void); }
 110	AUE_NULL	UNIMPL	iopl
 111	AUE_NULL	MSTD	{ int linux_vhangup(void); }
 112	AUE_NULL	UNIMPL	idle
 113	AUE_NULL	UNIMPL	vm86old
-114	AUE_NULL	MSTD	{ int linux_wait4(l_pid_t pid, \
+114	AUE_WAIT4	MSTD	{ int linux_wait4(l_pid_t pid, \
 				    l_uint *status, l_int options, \
 				    struct l_rusage *rusage); }
-115	AUE_NULL	MSTD	{ int linux_swapoff(void); }
+115	AUE_SWAPOFF	MSTD	{ int linux_swapoff(void); }
 116	AUE_NULL	MSTD	{ int linux_sysinfo(struct l_sysinfo *info); }
 117	AUE_NULL	STD	{ int linux_ipc(l_uint what, l_int arg1, \
 				    l_int arg2, l_int arg3, void *ptr, \
 				    l_long arg5); }
-118	AUE_NULL	MNOPROTO	{ int fsync(int fd); }
-119	AUE_NULL	MSTD	{ int linux_sigreturn( \
+118	AUE_FSYNC	MNOPROTO	{ int fsync(int fd); }
+119	AUE_SIGRETURN	MSTD	{ int linux_sigreturn( \
 				    struct l_sigframe *sfp); }
-120	AUE_NULL	MSTD	{ int linux_clone(l_int flags, \
-				    void *stack); }
-121	AUE_NULL	MNOPROTO { int setdomainname(char *name, int len); }
+120	AUE_RFORK	MSTD	{ int linux_clone(l_int flags, void *stack); }
+121	AUE_SYSCTL	MNOPROTO { int setdomainname(char *name, \
+				    int len); }
 122	AUE_NULL	MSTD	{ int linux_newuname( \
 				    struct l_new_utsname *buf); }
 123	AUE_NULL	UNIMPL	modify_ldt
-124	AUE_NULL	MSTD	{ int linux_adjtimex(void); }
-125	AUE_NULL	MSTD	{ int linux_mprotect(caddr_t addr, int len, \
+124	AUE_ADJTIME	MSTD	{ int linux_adjtimex(void); }
+125	AUE_MPROTECT	MSTD	{ int linux_mprotect(caddr_t addr, int len, \
 				    int prot); }
-126	AUE_NULL	MSTD	{ int linux_sigprocmask(l_int how, \
+126	AUE_SIGPROCMASK	MSTD	{ int linux_sigprocmask(l_int how, \
 				    l_osigset_t *mask, l_osigset_t *omask); }
 127	AUE_NULL	MSTD	{ int linux_create_module(void); }
 128	AUE_NULL	MSTD	{ int linux_init_module(void); }
 129	AUE_NULL	MSTD	{ int linux_delete_module(void); }
 130	AUE_NULL	MSTD	{ int linux_get_kernel_syms(void); }
-131	AUE_NULL	MSTD	{ int linux_quotactl(void); }
-132	AUE_NULL	MNOPROTO	{ int getpgid(int pid); }
-133	AUE_NULL	MNOPROTO	{ int fchdir(int fd); }
-134	AUE_NULL	MSTD	{ int linux_bdflush(void); }
+131	AUE_QUOTACTL	MSTD	{ int linux_quotactl(void); }
+132	AUE_GETPGID	MNOPROTO	{ int getpgid(int pid); }
+133	AUE_FCHDIR	MNOPROTO	{ int fchdir(int fd); }
+134	AUE_BDFLUSH	MSTD	{ int linux_bdflush(void); }
 135	AUE_NULL	MSTD	{ int linux_sysfs(l_int option, \
 				    l_ulong arg1, l_ulong arg2); }
-136	AUE_NULL	MSTD	{ int linux_personality(l_ulong per); }
+136	AUE_PERSONALITY	MSTD	{ int linux_personality(l_ulong per); }
 137	AUE_NULL	UNIMPL	afs_syscall
-138	AUE_NULL	MSTD	{ int linux_setfsuid16(l_uid16_t uid); }
-139	AUE_NULL	MSTD	{ int linux_setfsgid16(l_gid16_t gid); }
-140	AUE_NULL	MSTD	{ int linux_llseek(l_int fd, l_ulong ohigh, \
+138	AUE_SETFSUID	MSTD	{ int linux_setfsuid16(l_uid16_t uid); }
+139	AUE_SETFSGID	MSTD	{ int linux_setfsgid16(l_gid16_t gid); }
+140	AUE_LSEEK	MSTD	{ int linux_llseek(l_int fd, l_ulong ohigh, \
 				    l_ulong olow, l_loff_t *res, \
 				    l_uint whence); }
-141	AUE_NULL	STD	{ int linux_getdents(l_uint fd, void *dent, \
+141	AUE_O_GETDENTS	STD	{ int linux_getdents(l_uint fd, void *dent, \
 				    l_uint count); }
-142	AUE_NULL	MSTD	{ int linux_select(l_int nfds, \
+142	AUE_SELECT	MSTD	{ int linux_select(l_int nfds, \
 				    l_fd_set *readfds, l_fd_set *writefds, \
 				    l_fd_set *exceptfds, \
 				    struct l_timeval *timeout); }
-143	AUE_NULL	MNOPROTO	{ int flock(int fd, int how); }
-144	AUE_NULL	MSTD	{ int linux_msync(l_ulong addr, \
+143	AUE_FLOCK	MNOPROTO	{ int flock(int fd, int how); }
+144	AUE_MSYNC	MSTD	{ int linux_msync(l_ulong addr, \
 				    l_size_t len, l_int fl); }
-145	AUE_NULL	MSTD	{ int linux_readv(int fd, \
-				    struct iovec32 *iovp, u_int iovcnt); }
-146	AUE_NULL	MSTD	{ int linux_writev(int fd, \
-				    struct iovec32 *iovp, u_int iovcnt); }
-147	AUE_NULL	MSTD	{ int linux_getsid(l_pid_t pid); }
+145	AUE_READV	MSTD	{ int linux_readv(int fd, struct iovec32 *iovp, \
+				    u_int iovcnt); }
+146	AUE_WRITEV	MSTD	{ int linux_writev(int fd, struct iovec32 *iovp, \
+				    u_int iovcnt); }
+147	AUE_GETSID	MSTD	{ int linux_getsid(l_pid_t pid); }
 148	AUE_NULL	MSTD	{ int linux_fdatasync(l_uint fd); }
-149	AUE_NULL	MSTD	{ int linux_sysctl( \
+149	AUE_SYSCTL	MSTD	{ int linux_sysctl( \
 				    struct l___sysctl_args *args); }
-150	AUE_NULL	MNOPROTO { int mlock(const void *addr, size_t len); }
-151	AUE_NULL	MNOPROTO { int munlock(const void *addr, \
-				    size_t len); }
-152	AUE_NULL	MNOPROTO { int mlockall(int how); }
-153	AUE_NULL	MNOPROTO { int munlockall(void); }
-154	AUE_NULL	MNOPROTO { int sched_setparam(pid_t pid, \
+150	AUE_MLOCK	MNOPROTO { int mlock(const void *addr, size_t len); }
+151	AUE_MUNLOCK	MNOPROTO { int munlock(const void *addr, size_t len); }
+152	AUE_MLOCKALL	MNOPROTO { int mlockall(int how); }
+153	AUE_MUNLOCKALL	MNOPROTO { int munlockall(void); }
+154	AUE_SCHED_SETPARAM	MNOPROTO { int sched_setparam(pid_t pid, \
 				    const struct sched_param *param); }
-155	AUE_NULL	MNOPROTO { int sched_getparam(pid_t pid, \
+155	AUE_SCHED_GETPARAM	MNOPROTO { int sched_getparam(pid_t pid, \
 				    struct sched_param *param); }
-156	AUE_NULL	MSTD	{ int linux_sched_setscheduler(l_pid_t pid, \
+156	AUE_SCHED_SETSCHEDULER	MSTD	{ int linux_sched_setscheduler(l_pid_t pid, \
 				    l_int policy, \
 				    struct l_sched_param *param); }
-157	AUE_NULL	MSTD	{ int linux_sched_getscheduler(l_pid_t pid); }
+157	AUE_SCHED_GETSCHEDULER	MSTD	{ int linux_sched_getscheduler(l_pid_t pid); }
 158	AUE_NULL	MNOPROTO	{ int sched_yield(void); }
-159	AUE_NULL	MSTD	{ int linux_sched_get_priority_max( \
+159	AUE_SCHED_GET_PRIORITY_MAX	MSTD	{ int linux_sched_get_priority_max( \
 				    l_int policy); }
-160	AUE_NULL	MSTD	{ int linux_sched_get_priority_min( \
+160	AUE_SCHED_GET_PRIORITY_MIN	MSTD	{ int linux_sched_get_priority_min( \
 				    l_int policy); }
-161	AUE_NULL	MSTD	{ int linux_sched_rr_get_interval( \
-				    l_pid_t pid, \
+161	AUE_SCHED_RR_GET_INTERVAL	MSTD { int linux_sched_rr_get_interval(l_pid_t pid, \
 				    struct l_timespec *interval); }
 162	AUE_NULL	MSTD	{ int linux_nanosleep( \
 				    const struct l_timespec *rqtp, \
@@ -286,20 +288,20 @@
 163	AUE_NULL	MSTD	{ int linux_mremap(l_ulong addr, \
 				    l_ulong old_len, l_ulong new_len, \
 				    l_ulong flags, l_ulong new_addr); }
-164	AUE_NULL	MSTD	{ int linux_setresuid16(l_uid16_t ruid, \
+164	AUE_SETRESUID	MSTD	{ int linux_setresuid16(l_uid16_t ruid, \
 				    l_uid16_t euid, l_uid16_t suid); }
-165	AUE_NULL	MSTD	{ int linux_getresuid16(l_uid16_t *ruid, \
+165	AUE_GETRESUID	MSTD	{ int linux_getresuid16(l_uid16_t *ruid, \
 				    l_uid16_t *euid, l_uid16_t *suid); }
 166	AUE_NULL	UNIMPL	vm86
 167	AUE_NULL	MSTD	{ int linux_query_module(void); }
-168	AUE_NULL	MNOPROTO	{ int poll(struct pollfd*, \
+168	AUE_POLL	MNOPROTO	{ int poll(struct pollfd*, \
 				    unsigned int nfds, int timeout); }
 169	AUE_NULL	MSTD	{ int linux_nfsservctl(void); }
-170	AUE_NULL	MSTD	{ int linux_setresgid16(l_gid16_t rgid, \
+170	AUE_SETRESGID	MSTD	{ int linux_setresgid16(l_gid16_t rgid, \
 				    l_gid16_t egid, l_gid16_t sgid); }
-171	AUE_NULL	MSTD	{ int linux_getresgid16(l_gid16_t *rgid, \
+171	AUE_GETRESGID	MSTD	{ int linux_getresgid16(l_gid16_t *rgid, \
 				    l_gid16_t *egid, l_gid16_t *sgid); }
-172	AUE_NULL	MSTD	{ int linux_prctl(void); }
+172	AUE_PRCTL	MSTD	{ int linux_prctl(void); }
 173	AUE_NULL	MSTD	{ int linux_rt_sigreturn( \
 				    struct l_ucontext *ucp); }
 174	AUE_NULL	MSTD	{ int linux_rt_sigaction(l_int sig, \
@@ -315,78 +317,78 @@
 179	AUE_NULL	MSTD	{ int linux_rt_sigsuspend( \
 				    l_sigset_t *newset, \
 				    l_size_t sigsetsize); }
-180	AUE_NULL	MSTD	{ int linux_pread(l_uint fd, char *buf, \
+180	AUE_PREAD	MSTD	{ int linux_pread(l_uint fd, char *buf, \
 				    l_size_t nbyte, l_loff_t offset); }
-181	AUE_NULL	MSTD	{ int linux_pwrite(l_uint fd, char *buf, \
+181	AUE_PWRITE	MSTD	{ int linux_pwrite(l_uint fd, char *buf, \
 				    l_size_t nbyte, l_loff_t offset); }
-182	AUE_NULL	MSTD	{ int linux_chown16(char *path, \
+182	AUE_CHOWN	MSTD	{ int linux_chown16(char *path, \
 				    l_uid16_t uid, l_gid16_t gid); }
-183	AUE_NULL	MSTD	{ int linux_getcwd(char *buf, \
+183	AUE_GETCWD	MSTD	{ int linux_getcwd(char *buf, \
 				    l_ulong bufsize); }
-184	AUE_NULL	MSTD	{ int linux_capget(void); }
-185	AUE_NULL	MSTD	{ int linux_capset(void); }
+184	AUE_CAPGET	MSTD	{ int linux_capget(void); }
+185	AUE_CAPSET	MSTD	{ int linux_capset(void); }
 186	AUE_NULL	MSTD	{ int linux_sigaltstack(l_stack_t *uss, \
 				    l_stack_t *uoss); }
-187	AUE_NULL	MSTD	{ int linux_sendfile(void); }
-188	AUE_NULL	UNIMPL	getpmsg
-189	AUE_NULL	UNIMPL	putpmsg
-190	AUE_NULL	MSTD	{ int linux_vfork(void); }
-191	AUE_NULL	MSTD	{ int linux_getrlimit(l_uint resource, \
+187	AUE_SENDFILE	MSTD	{ int linux_sendfile(void); }
+188	AUE_GETPMSG	UNIMPL	getpmsg
+189	AUE_PUTPMSG	UNIMPL	putpmsg
+190	AUE_VFORK	MSTD	{ int linux_vfork(void); }
+191	AUE_GETRLIMIT	MSTD	{ int linux_getrlimit(l_uint resource, \
 				    struct l_rlimit *rlim); }
-192	AUE_NULL	MSTD	{ int linux_mmap2(l_ulong addr, l_ulong len, \
+192	AUE_MMAP	MSTD	{ int linux_mmap2(l_ulong addr, l_ulong len, \
 				    l_ulong prot, l_ulong flags, l_ulong fd, \
 				    l_ulong pgoff); }
-193	AUE_NULL	MSTD	{ int linux_truncate64(char *path, \
+193	AUE_TRUNCATE	MSTD	{ int linux_truncate64(char *path, \
 				    l_loff_t length); }
-194	AUE_NULL	MSTD	{ int linux_ftruncate64(l_uint fd, \
+194	AUE_FTRUNCATE	MSTD	{ int linux_ftruncate64(l_uint fd, \
 				    l_loff_t length); }
-195	AUE_NULL	MSTD	{ int linux_stat64(char *filename, \
+195	AUE_STAT	MSTD	{ int linux_stat64(char *filename, \
 				    struct l_stat64 *statbuf, l_long flags); }
-196	AUE_NULL	MSTD	{ int linux_lstat64(char *filename, \
+196	AUE_LSTAT	MSTD	{ int linux_lstat64(char *filename, \
 				    struct l_stat64 *statbuf, l_long flags); }
-197	AUE_NULL	MSTD	{ int linux_fstat64(l_ulong fd, \
+197	AUE_FSTAT	MSTD	{ int linux_fstat64(l_ulong fd, \

>>> TRUNCATED FOR MAIL (1000 lines) <<<


More information about the p4-projects mailing list