svn commit: r219421 - head/sys/compat/linux

Dmitry Chagin dchagin at FreeBSD.org
Wed Mar 9 05:59:33 UTC 2011


Author: dchagin
Date: Wed Mar  9 05:59:33 2011
New Revision: 219421
URL: http://svn.freebsd.org/changeset/base/219421

Log:
  Indeed, remove bogus since r219405 check of the Linux ABI.
  
  Pointed out:	jhb
  
  MFC after:	2 Week

Modified:
  head/sys/compat/linux/linux_emul.c

Modified: head/sys/compat/linux/linux_emul.c
==============================================================================
--- head/sys/compat/linux/linux_emul.c	Wed Mar  9 04:48:06 2011	(r219420)
+++ head/sys/compat/linux/linux_emul.c	Wed Mar  9 05:59:33 2011	(r219421)
@@ -309,9 +309,6 @@ linux_schedtail(struct thread *td)
 
 	p = td->td_proc;
 
-	if (SV_PROC_ABI(p) != SV_ABI_LINUX)
-		return;
-
 	/* find the emuldata */
 	em = em_find(p, EMUL_DOLOCK);
 


More information about the svn-src-head mailing list