Module Name: src Committed By: christos Date: Tue Jun 18 01:42:36 UTC 2019
Modified Files: src/sys/compat/freebsd: syscalls.master Log Message: add quota option To generate a diff of this commit: cvs rdiff -u -r1.72 -r1.73 src/sys/compat/freebsd/syscalls.master Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/compat/freebsd/syscalls.master diff -u src/sys/compat/freebsd/syscalls.master:1.72 src/sys/compat/freebsd/syscalls.master:1.73 --- src/sys/compat/freebsd/syscalls.master:1.72 Sat Jan 6 11:41:23 2018 +++ src/sys/compat/freebsd/syscalls.master Mon Jun 17 21:42:36 2019 @@ -1,4 +1,4 @@ - $NetBSD: syscalls.master,v 1.72 2018/01/06 16:41:23 kamil Exp $ + $NetBSD: syscalls.master,v 1.73 2019/06/18 01:42:36 christos Exp $ ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -36,6 +36,7 @@ #include "opt_ntp.h" #include "opt_sysv.h" #include "opt_compat_43.h" +#include "opt_quota.h" #endif #include <sys/param.h> @@ -277,9 +278,14 @@ 146 NOARGS { int|compat_43_sys||killpg(int pgid, int signum); } \ okillpg 147 NOARGS { int|sys||setsid(void); } +#if defined(QUOTA) || !defined(_KERNEL_OPT) 148 NOARGS { int|compat_50_sys||quotactl(char *path, int cmd, \ int uid, void *arg); } 149 NOARGS { int|compat_43_sys||quota(void); } oquota +#else +148 EXCL compat_50_sys_quotactl +149 EXCL compat_43_sys_quota +#endif 150 NOARGS { int|compat_43_sys||getsockname(int fdec, void *asa, \ int *alen); } ogetsockname