From owner-freebsd-current Mon Mar 24 09:58:15 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA21960 for current-outgoing; Mon, 24 Mar 1997 09:58:15 -0800 (PST) Received: from shadows.aeon.net (shadows.aeon.net [194.100.41.1]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA21936 for ; Mon, 24 Mar 1997 09:57:35 -0800 (PST) Received: (from bsdcur@localhost) by shadows.aeon.net (8.8.5/8.8.3) id RAA03608 for current@freebsd.org; Mon, 24 Mar 1997 17:54:46 GMT From: mika ruohotie Message-Id: <199703241754.RAA03608@shadows.aeon.net> Subject: Re: todays world... In-Reply-To: <199703241447.OAA01998@shadows.aeon.net> from mika ruohotie at "Mar 24, 97 04:47:03 pm" To: current@freebsd.org Date: Mon, 24 Mar 1997 19:54:45 +0200 (EET) X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > ===> sbin/dumpfs > cc -O2 -m486 -pipe -c /usr/src/sbin/dumpfs/dumpfs.c > /usr/src/sbin/dumpfs/dumpfs.c: In function `dumpfs': > /usr/src/sbin/dumpfs/dumpfs.c:150: structure has no member named `fs_headswitch'/usr/src/sbin/dumpfs/dumpfs.c:150: structure has no member named `fs_trkseek' > *** Error code 1 > > Stop. > > died. > > cvsup:ed from cvsup.internat.freebsd.org around 9:ish GMT well... *gasp* i found an error and this was the fix i was able to figure easily, not that i know it's the right one, but it might be the right one. i guess there's first time for everything... =) shadows# diff -u fs.h.orig fs.h --- fs.h.orig Mon Mar 24 19:38:20 1997 +++ fs.h Mon Mar 24 19:41:03 1997 @@ -176,6 +176,8 @@ /* these are configuration parameters */ int32_t fs_minfree; /* minimum percentage of free blocks */ int32_t fs_rotdelay; /* num of ms for optimal next block */ + int32_t fs_headswitch; /* dont expect me to know what i am */ + int32_t fs_trkseek; /* actually doing, it might work tho */ int32_t fs_rps; /* disk revolutions per second */ /* these fields can be computed from the others */ int32_t fs_bmask; /* ``blkoff'' calc of blk offsets */ shadows# after that it compiles... (ok, so it looks easy...) =) oh, and i think i should've mentioned that's 3.0-CURRENT i am using, though that this is current-list it doesnt mean it's obvious what i'd talk about. mickey