From owner-cvs-src@FreeBSD.ORG Mon Aug 16 17:54:21 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D94F716A4CE; Mon, 16 Aug 2004 17:54:21 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5345343D45; Mon, 16 Aug 2004 17:54:21 +0000 (GMT) (envelope-from scottl@freebsd.org) Received: from pooker.samsco.org (scottl@localhost [127.0.0.1]) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i7GHsdSM054946; Mon, 16 Aug 2004 11:54:39 -0600 (MDT) (envelope-from scottl@freebsd.org) Received: from localhost (scottl@localhost)i7GHscZo054943; Mon, 16 Aug 2004 11:54:38 -0600 (MDT) (envelope-from scottl@freebsd.org) X-Authentication-Warning: pooker.samsco.org: scottl owned process doing -bs Date: Mon, 16 Aug 2004 11:54:38 -0600 (MDT) From: Scott Long Sender: scottl@pooker.samsco.org To: "Tim J. Robbins" In-Reply-To: <200408160728.i7G7SHYn062431@repoman.freebsd.org> Message-ID: <20040816115422.A32601@pooker.samsco.org> References: <200408160728.i7G7SHYn062431@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=1.0 required=3.8 tests=SUBJ_HAS_SPACES autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/compat/linux linux_file.c linux_getcwd.c linux_ioctl.c linux_ipc.c linux_ipc.h linux_mib.c linux_misc.c linux_signal.c linux_socket.c linux_stats.c linux_sysctl.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 17:54:22 -0000 Thanks a lot!! Scott On Mon, 16 Aug 2004, Tim J. Robbins wrote: > tjr 2004-08-16 07:28:17 UTC > > FreeBSD src repository > > Modified files: > sys/compat/linux linux_file.c linux_getcwd.c linux_ioctl.c > linux_ipc.c linux_ipc.h linux_mib.c > linux_misc.c linux_signal.c > linux_socket.c linux_stats.c > linux_sysctl.c linux_uid16.c > Log: > Changes to MI Linux emulation code necessary to run 32-bit Linux binaries > on AMD64, and the general case where the emulated platform has different > size pointers than we use natively: > - declare certain structure members as l_uintptr_t and use the new PTRIN > and PTROUT macros to convert to and from native pointers. > - declare some structures __packed on amd64 when the layout would differ > from that used on i386. > - include instead of > if compiling with COMPAT_LINUX32. This will need to be revisited before > 32-bit and 64-bit Linux emulation support can coexist in the same kernel. > - other small scattered changes. > > This should be a no-op on i386 and Alpha. > > Revision Changes Path > 1.87 +21 -6 src/sys/compat/linux/linux_file.c > 1.15 +7 -0 src/sys/compat/linux/linux_getcwd.c > 1.121 +13 -2 src/sys/compat/linux/linux_ioctl.c > 1.39 +56 -34 src/sys/compat/linux/linux_ipc.c > 1.10 +2 -2 src/sys/compat/linux/linux_ipc.h > 1.22 +6 -0 src/sys/compat/linux/linux_mib.c > 1.158 +29 -6 src/sys/compat/linux/linux_misc.c > 1.46 +14 -3 src/sys/compat/linux/linux_signal.c > 1.51 +67 -51 src/sys/compat/linux/linux_socket.c > 1.62 +9 -2 src/sys/compat/linux/linux_stats.c > 1.13 +13 -6 src/sys/compat/linux/linux_sysctl.c > 1.15 +7 -0 src/sys/compat/linux/linux_uid16.c >