From owner-cvs-src-old@FreeBSD.ORG Wed Jun 17 21:12:39 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C01B1106566C for ; Wed, 17 Jun 2009 21:12:39 +0000 (UTC) (envelope-from dchagin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id AA5D98FC14 for ; Wed, 17 Jun 2009 21:12:39 +0000 (UTC) (envelope-from dchagin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n5HLCdnh014084 for ; Wed, 17 Jun 2009 21:12:39 GMT (envelope-from dchagin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n5HLCddI014083 for cvs-src-old@freebsd.org; Wed, 17 Jun 2009 21:12:39 GMT (envelope-from dchagin@repoman.freebsd.org) Message-Id: <200906172112.n5HLCddI014083@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to dchagin@repoman.freebsd.org using -f From: Dmitry Chagin Date: Wed, 17 Jun 2009 21:12:32 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/amd64/linux32 linux.h linux32_machdep.c syscalls.master X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Jun 2009 21:12:41 -0000 dchagin 2009-06-17 21:12:32 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/amd64/linux32 linux.h linux32_machdep.c syscalls.master Log: SVN rev 194400 on 2009-06-17 21:12:32Z by dchagin MFC r185438: Fix iovec32 for linux32/amd64. Add a custom version of copyiniov() to deal with the 32-bit iovec pointers from userland (to be used later). Adjust prototypes for linux_readv() and linux_writev() to use new l_iovec32 definition and to match actual linux code. In particular, use ulong for fd (why ?). Approved by: kib (mentor) Revision Changes Path 1.16.2.6 +10 -0 src/sys/amd64/linux32/linux.h 1.45.2.6 +33 -10 src/sys/amd64/linux32/linux32_machdep.c 1.30.2.4 +4 -4 src/sys/amd64/linux32/syscalls.master