Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 21 Jun 2006 13:41:03 GMT
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 99758 for review
Message-ID:  <200606211341.k5LDf3bH088023@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=99758

Change 99758 by rdivacky@rdivacky_witten on 2006/06/21 13:40:30

	In the IFC I managed to commit my local change.. backout it out.

Affected files ...

.. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#4 edit

Differences ...

==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#4 (text+ko) ====

@@ -848,8 +848,11 @@
 int
 linux_set_thread_area(struct thread *td, struct linux_set_thread_area_args *args)
 {
-
-	return (0);
+	/*
+	 * Return an error code instead of raising a SIGSYS so that
+	 * the caller will fall back to simpler LDT methods.
+	 */
+	return (ENOSYS);
 }
 
 int



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