From owner-cvs-all@FreeBSD.ORG Fri Feb 18 18:52:00 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EA5616A4CE; Fri, 18 Feb 2005 18:52:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED07443D5A; Fri, 18 Feb 2005 18:51:59 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1IIpxkS035121; Fri, 18 Feb 2005 18:51:59 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1IIpx6R035120; Fri, 18 Feb 2005 18:51:59 GMT (envelope-from jhb) Message-Id: <200502181851.j1IIpx6R035120@repoman.freebsd.org> From: John Baldwin Date: Fri, 18 Feb 2005 18:51:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/linux32 linux32_machdep.c linux32_sysvec.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Feb 2005 18:52:00 -0000 jhb 2005-02-18 18:51:59 UTC FreeBSD src repository Modified files: sys/amd64/linux32 linux32_machdep.c linux32_sysvec.c Log: - Add a custom version of exec_copyin_args() to deal with the 32-bit pointers in argv and envv in userland and use that together with kern_execve() and exec_free_args() to implement linux_execve() for the amd64/linux32 ABI without using the stackgap. - Implement linux_nanosleep() using the recently added kern_nanosleep(). - Use linux_emul_convpath() instead of linux_emul_find() in exec_linux_imgact_try(). Tested by: cokane Silence on: amd64 Revision Changes Path 1.6 +112 -77 src/sys/amd64/linux32/linux32_machdep.c 1.6 +6 -7 src/sys/amd64/linux32/linux32_sysvec.c