From owner-freebsd-current@FreeBSD.ORG Wed Jun 18 10:58:34 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6B8037B401 for ; Wed, 18 Jun 2003 10:58:34 -0700 (PDT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F41D43FAF for ; Wed, 18 Jun 2003 10:58:34 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.9/8.12.9) with ESMTP id h5IHwQM7055316; Wed, 18 Jun 2003 10:58:30 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200306181758.h5IHwQM7055316@gw.catspoiler.org> Date: Wed, 18 Jun 2003 10:58:26 -0700 (PDT) From: Don Lewis To: chris@Shenton.Org In-Reply-To: <87k7bjmg57.fsf@PECTOPAH.shenton.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: current@FreeBSD.org Subject: Re: 5.1-CURRENT hangs on disk i/o? sysctl_old_user() non-sleepable locks X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Jun 2003 17:58:35 -0000 On 18 Jun, Chris Shenton wrote: > Don Lewis writes: > >> Try the very untested patch below ... > >> RCS file: /home/ncvs/src/sys/kern/uipc_syscalls.c,v > > When I do the patch, how much of the OS do I need to rebuild, just do > a "make install" in the ".../src/sys/kern" dir? Rebuild the OS from > the top dir? Rebuild the kernel? I want to make sure I'm giving this > a proper test. If the only changes since the last buildworld have been in src/sys, then the slow but safe way is: make buildkernel make installkernel The quicker way is: cd /usr/obj/usr/src/sys/KERNELCONFNAME make make install You can do "make reinstall" instead of "make install" if you don't want /boot/kernel.old to be nuked and boot/kernel to be renamed to /boot/kernel.old before the new kernel is installed. You'll have to do it the slow way if you've changed your kernel configuration.