From owner-freebsd-current Wed Feb 25 10:12:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA10460 for freebsd-current-outgoing; Wed, 25 Feb 1998 10:12:08 -0800 (PST) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA10449; Wed, 25 Feb 1998 10:12:02 -0800 (PST) (envelope-from julian@whistle.com) Received: (from daemon@localhost) by alpo.whistle.com (8.8.5/8.8.5) id KAA23950; Wed, 25 Feb 1998 10:09:31 -0800 (PST) Received: from UNKNOWN(), claiming to be "current1.whistle.com" via SMTP by alpo.whistle.com, id smtpd023947; Wed Feb 25 10:09:23 1998 Date: Wed, 25 Feb 1998 10:05:20 -0800 (PST) From: Julian Elischer To: Jonathan Hanna cc: current@FreeBSD.ORG, julian@FreeBSD.ORG Subject: Re:missing sliceio.h in devfs/slice patch In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG oops.. I'll send it to you.. /* * $Id: sliceio.h,v 1.10 1997/02/22 09:45:37 peter Exp $ */ #ifndef _SYS_SLICEIO_H_ #define _SYS_SLICEIO_H_ #ifndef KERNEL #include #endif #include #define SLCTYPE_SIZE 16 #define SLCNAME_SIZE 32 struct sliceinfo { u_int64_t size; u_int32_t blocksize; char type[SLCTYPE_SIZE]; /* e.g. sd or raw*/ char hint[SLCTYPE_SIZE]; /* e.g. mbr or ""*/ char handler[SLCTYPE_SIZE]; /* e.g. mbr or "" */ char devicename[SLCNAME_SIZE]; /* e.g. sd0s1a */ }; struct subsliceinfo { struct sliceinfo wholesliceinfo; /* size of the whole slice */ int slicenumber; /* which subslice we are on */ u_int64_t offset; /* where that subslice starts */ struct sliceinfo subsliceinfo; /* info about that subslice */ }; #define SLCIOCRESET _IO('S', 0) /* reset and reprobe. */ #define SLCIOCINQ _IOR('S', 2, struct sliceinfo) /* info on container */ #define SLCIOCMOD _IOW('S', 3, struct sliceinfo) /* force container */ #define SLCIOCGETSUB _IOWR('S', 4, struct subsliceinfo) /* get sub info */ #define SLCIOCSETSUB _IOWR('S', 5, struct subsliceinfo) /* set sub info */ #endif /* !_SYS_SLICEIO_H_ */ On Tue, 24 Feb 1998, Jonathan Hanna wrote: > > Just applied you new devfs/slice patch. > I seem to be missing: sys/sliceio.h in mbr.c. > > Where can I find it? > > Thanks. > > Jonathan Hanna > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message