svn commit: r294764 - stable/10/sys/amd64/linux
Dmitry Chagin
dchagin at FreeBSD.org
Tue Jan 26 06:05:56 UTC 2016
Author: dchagin
Date: Tue Jan 26 06:05:55 2016
New Revision: 294764
URL: https://svnweb.freebsd.org/changeset/base/294764
Log:
MFC r294620:
Fix a typo.
MFC r294621:
Remove obsolete comment.
Modified:
stable/10/sys/amd64/linux/linux.h
stable/10/sys/amd64/linux/linux_machdep.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/amd64/linux/linux.h
==============================================================================
--- stable/10/sys/amd64/linux/linux.h Tue Jan 26 05:04:36 2016 (r294763)
+++ stable/10/sys/amd64/linux/linux.h Tue Jan 26 06:05:55 2016 (r294764)
@@ -530,8 +530,8 @@ struct l_pollfd {
#define LINUX_ARCH_SET_GS 0x1001
#define LINUX_ARCH_SET_FS 0x1002
-#define LINUX_ARCH_GET_GS 0x1003
-#define LINUX_ARCH_GET_FS 0x1004
+#define LINUX_ARCH_GET_FS 0x1003
+#define LINUX_ARCH_GET_GS 0x1004
#define linux_copyout_rusage(r, u) copyout(r, u, sizeof(*r))
Modified: stable/10/sys/amd64/linux/linux_machdep.c
==============================================================================
--- stable/10/sys/amd64/linux/linux_machdep.c Tue Jan 26 05:04:36 2016 (r294763)
+++ stable/10/sys/amd64/linux/linux_machdep.c Tue Jan 26 06:05:55 2016 (r294764)
@@ -383,7 +383,6 @@ linux_sigaltstack(struct thread *td, str
return (error);
}
-/* XXX do all */
int
linux_arch_prctl(struct thread *td, struct linux_arch_prctl_args *args)
{
More information about the svn-src-stable-10
mailing list