From owner-cvs-src@FreeBSD.ORG Mon May 5 13:33:39 2003 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 0884B37B401; Mon, 5 May 2003 13:33:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97D9F43F93; Mon, 5 May 2003 13:33:38 -0700 (PDT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h45KXc0U008400; Mon, 5 May 2003 13:33:38 -0700 (PDT) (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h45KXcWN008399; Mon, 5 May 2003 13:33:38 -0700 (PDT) Message-Id: <200305052033.h45KXcWN008399@repoman.freebsd.org> From: David Malone Date: Mon, 5 May 2003 13:33:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_syscalls.c src/sys/sys syscallsubr.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: Mon, 05 May 2003 20:33:39 -0000 dwmalone 2003/05/05 13:33:38 PDT FreeBSD src repository Modified files: sys/kern uipc_syscalls.c sys/sys syscallsubr.h Log: Split sendit into two parts. The first part, still called sendit, that does the copyin stuff and then calls the second part kern_sendit to do the hard work. Don't bother holding Giant during the copyin phase. The intent of this is to allow the Linux emulator to impliment send* syscalls without using the stackgap. Revision Changes Path 1.146 +65 -50 src/sys/kern/uipc_syscalls.c 1.9 +4 -0 src/sys/sys/syscallsubr.h