From owner-svn-src-user@FreeBSD.ORG Thu May 1 14:19:15 2014 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 86949ECE; Thu, 1 May 2014 14:19:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73E8E10F4; Thu, 1 May 2014 14:19:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s41EJFfF079111; Thu, 1 May 2014 14:19:15 GMT (envelope-from dchagin@svn.freebsd.org) Received: (from dchagin@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s41EJFDr079110; Thu, 1 May 2014 14:19:15 GMT (envelope-from dchagin@svn.freebsd.org) Message-Id: <201405011419.s41EJFDr079110@svn.freebsd.org> From: Dmitry Chagin Date: Thu, 1 May 2014 14:19:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r265192 - user/dchagin/lemul/sys/i386/linux X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 May 2014 14:19:15 -0000 Author: dchagin Date: Thu May 1 14:19:14 2014 New Revision: 265192 URL: http://svnweb.freebsd.org/changeset/base/265192 Log: Add forgotten in r265179 linux_common_execve() call to the i386. Modified: user/dchagin/lemul/sys/i386/linux/linux_machdep.c Modified: user/dchagin/lemul/sys/i386/linux/linux_machdep.c ============================================================================== --- user/dchagin/lemul/sys/i386/linux/linux_machdep.c Thu May 1 14:09:47 2014 (r265191) +++ user/dchagin/lemul/sys/i386/linux/linux_machdep.c Thu May 1 14:19:14 2014 (r265192) @@ -141,7 +141,7 @@ linux_execve(struct thread *td, struct l args->argp, args->envp); free(newpath, M_TEMP); if (error == 0) - error = kern_execve(td, &eargs, NULL); + error = linux_common_execve(td, &eargs); return (error); }