From owner-p4-projects@FreeBSD.ORG Mon Jul 23 17:11:57 2007 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id BA8FD16A468; Mon, 23 Jul 2007 17:11:57 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4AFEF16A41A for ; Mon, 23 Jul 2007 17:11:57 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from vlakno.cz (vlk.vlakno.cz [62.168.28.247]) by mx1.freebsd.org (Postfix) with ESMTP id 0A87D13C4B7 for ; Mon, 23 Jul 2007 17:11:54 +0000 (UTC) (envelope-from rdivacky@vlk.vlakno.cz) Received: from localhost (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 1BE588C0347 for ; Mon, 23 Jul 2007 19:11:53 +0200 (CEST) X-Virus-Scanned: amavisd-new at vlakno.cz Received: from vlakno.cz ([127.0.0.1]) by localhost (vlk.vlakno.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id woI7mGBtCzy4 for ; Mon, 23 Jul 2007 19:11:52 +0200 (CEST) Received: from vlk.vlakno.cz (localhost [127.0.0.1]) by vlakno.cz (Postfix) with ESMTP id 065908C0346 for ; Mon, 23 Jul 2007 19:11:52 +0200 (CEST) Received: (from rdivacky@localhost) by vlk.vlakno.cz (8.13.8/8.13.8/Submit) id l6NHBpqr074058 for perforce@FreeBSD.org; Mon, 23 Jul 2007 19:11:51 +0200 (CEST) (envelope-from rdivacky) Date: Mon, 23 Jul 2007 19:11:51 +0200 From: Roman Divacky To: Perforce Change Reviews Message-ID: <20070723171151.GA74046@freebsd.org> References: <200707231709.l6NH9q43095379@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200707231709.l6NH9q43095379@repoman.freebsd.org> User-Agent: Mutt/1.4.2.3i Cc: Subject: Re: PERFORCE change 123977 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jul 2007 17:11:58 -0000 On Mon, Jul 23, 2007 at 05:09:52PM +0000, Roman Divacky wrote: > http://perforce.freebsd.org/chv.cgi?CH=123977 > > Change 123977 by rdivacky@rdivacky_witten on 2007/07/23 17:08:52 > > Fix kern_linkat() nd* merge. > > Affected files ... > > .. //depot/projects/soc2007/rdivacky/linux_at/sys/kern/kern_kse.c#4 edit > .. //depot/projects/soc2007/rdivacky/linux_at/sys/kern/vfs_syscalls.c#51 edit > > Differences ... > > ==== //depot/projects/soc2007/rdivacky/linux_at/sys/kern/kern_kse.c#4 (text+ko) ==== > > @@ -67,8 +67,6 @@ > static void thread_alloc_spare(struct thread *td); > static struct thread *thread_schedule_upcall(struct thread *td, struct kse_upcall *ku); > static struct kse_upcall *upcall_alloc(void); > -static void upcall_free(struct kse_upcall *ku); > - > > struct mtx kse_lock; > MTX_SYSINIT(kse_lock, &kse_lock, "kse lock", MTX_SPIN); > @@ -83,13 +81,6 @@ > } > > void > -upcall_free(struct kse_upcall *ku) > -{ > - > - uma_zfree(upcall_zone, ku); > -} > - > -void > upcall_remove(struct thread *td) > { > > this does not belong here of course ;(