From owner-freebsd-current Sun Feb 16 14:25:27 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA01575 for current-outgoing; Sun, 16 Feb 1997 14:25:27 -0800 (PST) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA01564 for ; Sun, 16 Feb 1997 14:25:23 -0800 (PST) Received: from time.cdrom.com (localhost [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id OAA15422; Sun, 16 Feb 1997 14:25:16 -0800 (PST) To: Chuck Robey cc: bde@FreeBSD.org, FreeBSD current Subject: Re: mount and df In-reply-to: Your message of "Sun, 16 Feb 1997 12:12:02 EST." Date: Sun, 16 Feb 1997 14:25:16 -0800 Message-ID: <15416.856131916@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-current@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > Both seem broken here. Neither can find the size of the struct ufs_args, > which I found in sys/ufs/ufs/ufsmount.h. I don't know if this should be > directly included in mount.c and df.c, or whether it's supposed to be This problem happens with a lot of things which attempt to get at the foo_args structures (ufs_args, iso_args, msdosfs_args, etc). Just try building /usr/src/release/sysinstall in -current to watch about 4 instances of this error. Probably only Bruce would know if: a) These should be coming in via sys/mount.h, like they used to (though it was pretty gross to have to define things like MSDOSFS to get msdosfs_args in scope). b) We should be including instead. Bruce? Since Chuck raises it, I was sort of wondering. :-) Jordan