From owner-cvs-src@FreeBSD.ORG Fri Feb 18 18:37:27 2005 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 359C616A4CE; Fri, 18 Feb 2005 18:37:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1941B43D1F; Fri, 18 Feb 2005 18:37:27 +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 j1IIbQH0034380; Fri, 18 Feb 2005 18:37:26 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1IIbQEl034379; Fri, 18 Feb 2005 18:37:26 GMT (envelope-from jhb) Message-Id: <200502181837.j1IIbQEl034379@repoman.freebsd.org> From: John Baldwin Date: Fri, 18 Feb 2005 18:37:26 +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/alpha/osf1 osf1_misc.c osf1_mount.c osf1_util.h 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: Fri, 18 Feb 2005 18:37:27 -0000 jhb 2005-02-18 18:37:26 UTC FreeBSD src repository Modified files: sys/alpha/osf1 osf1_misc.c osf1_mount.c osf1_util.h Log: - Implement osf1_emul_find() using kern_alternate_path(). This changes the semantics in that the returned filename to use is now a kernel pointer rather than a user space pointer. This required changing the arguments to the CHECKALT*() macros some and changing the various system calls that used pathnames to use the kern_foo() functions that can accept kernel space filename pointers instead of calling the system call directly. - Use kern_open(), kern_stat(), kern_lstat(), kern_fstat(), kern_access(), kern_truncate(), kern_pathconf(), kern_execve(), kern_select(), kern_setitimer(), kern_getitimer(), kern_statfs(), and kern_fstatfs(). Silence on: alpha@ Revision Changes Path 1.53 +96 -261 src/sys/alpha/osf1/osf1_misc.c 1.20 +11 -40 src/sys/alpha/osf1/osf1_mount.c 1.8 +7 -9 src/sys/alpha/osf1/osf1_util.h