Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Jan 2016 06:05:55 +0000 (UTC)
From:      Dmitry Chagin <dchagin@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r294764 - stable/10/sys/amd64/linux
Message-ID:  <201601260605.u0Q65tBa097508@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)
 {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601260605.u0Q65tBa097508>