svn commit: r342979 - head/sys/compat/freebsd32
Olivier Houchard
cognet at FreeBSD.org
Sun Jan 13 00:37:32 UTC 2019
Author: cognet
Date: Sun Jan 13 00:37:31 2019
New Revision: 342979
URL: https://svnweb.freebsd.org/changeset/base/342979
Log:
amd64 is the only arch that doesn't require padding for 32bits syscalls, so
instead of listing every arch thar requires it, just exclude amd64.
Modified:
head/sys/compat/freebsd32/syscalls.master
Modified: head/sys/compat/freebsd32/syscalls.master
==============================================================================
--- head/sys/compat/freebsd32/syscalls.master Sun Jan 13 00:19:15 2019 (r342978)
+++ head/sys/compat/freebsd32/syscalls.master Sun Jan 13 00:37:31 2019 (r342979)
@@ -54,7 +54,7 @@
#include <compat/freebsd32/freebsd32.h>
#include <compat/freebsd32/freebsd32_proto.h>
-#if !defined(PAD64_REQUIRED) && (defined(__powerpc__) || defined(__mips__))
+#if !defined(PAD64_REQUIRED) && !defined(__amd64__)
#define PAD64_REQUIRED
#endif
More information about the svn-src-all
mailing list