From owner-cvs-all Thu Dec 14 6:44:24 2000 From owner-cvs-all@FreeBSD.ORG Thu Dec 14 06:44:20 2000 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from logger.gamma.ru (logger.gamma.ru [194.186.254.23]) by hub.freebsd.org (Postfix) with ESMTP id E68EE37B402; Thu, 14 Dec 2000 06:44:18 -0800 (PST) Received: (from ivt@localhost) by logger.gamma.ru (8.9.3/8.9.3) id RAA00669; Thu, 14 Dec 2000 17:44:17 +0300 (MSK) From: Igor Timkin Message-Id: <200012141444.RAA00669@logger.gamma.ru> Subject: Re: cvs commit: src/sys/ufs/ffs ffs_inode.c ffs_softdep.c src/sys/ufs/ufs ufs_extern.h ufs_lookup.c In-Reply-To: <5ld7evtvq1.fsf@assaris.sics.se> "from assar@FreeBSD.ORG at Dec 14, 2000 06:31:18 am" To: assar@FreeBSD.ORG Date: Thu, 14 Dec 2000 17:44:17 +0300 (MSK) Cc: Kirk McKusick , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL82 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Seems to OK: ivt@newsfeed:/home/ivt:1:512>uname -a FreeBSD newsfeed.gamma.ru 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Thu Dec 14 16:10:14 MSK 2000 ivt@newsfeed.gamma.ru:/usr/src/sys/compile/NEWSFEED i386 ivt@newsfeed:/home/ivt:1:513>uptime 5:44PM up 48 mins, 3 users, load averages: 2.60, 2.34, 2.14 assar@FreeBSD.ORG writes: > Igor Timkin writes: > > linking kernel.debug > > ffs_inode.o: In function `ffs_truncate': > > /sys/compile/NEWSFEED/../../ufs/ffs/ffs_inode.c:185: undefined reference to `softdep_slowdown' > > ufs_lookup.o: In function `ufs_dirremove': > > /sys/compile/NEWSFEED/../../ufs/ufs/ufs_lookup.c(.text+0x1175): undefined reference to `softdep_slowdown' > > *** Error code 1 > > > > Kernel without SOFTUPDATES. > > Can you try the appended patch and tell us how it works for you? > > /assar > > Index: ffs_softdep_stub.c > =================================================================== > RCS file: /home/ncvs/src/sys/ufs/ffs/ffs_softdep_stub.c,v > retrieving revision 1.14 > diff -u -w -u -w -r1.14 ffs_softdep_stub.c > --- ffs_softdep_stub.c 2000/08/09 00:41:54 1.14 > +++ ffs_softdep_stub.c 2000/12/14 05:30:06 > @@ -266,4 +266,10 @@ > return (0); > } > > +int > +softdep_slowdown(vp) > + struct vnode *vp; > +{ > + panic("softdep_slowdown called"); > +} > #endif /* SOFTUPDATES not configured in */ > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message