xref: /dragonfly/sys/sys/disk.h (revision 17b61719)
1 /*
2  * Copyright (c) 2003,2004 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  * ----------------------------------------------------------------------------
35  * "THE BEER-WARE LICENSE" (Revision 42):
36  * <phk@FreeBSD.ORG> wrote this file.  As long as you retain this notice you
37  * can do whatever you want with this stuff. If we meet some day, and you think
38  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
39  * ----------------------------------------------------------------------------
40  *
41  * $FreeBSD: src/sys/sys/disk.h,v 1.16.2.3 2001/06/20 16:11:01 scottl Exp $
42  * $DragonFly: src/sys/sys/disk.h,v 1.6 2004/07/16 05:51:57 dillon Exp $
43  */
44 
45 #ifndef _SYS_DISK_H_
46 #define	_SYS_DISK_H_
47 
48 #ifndef _SYS_DISKSLICE_H_
49 #include <sys/diskslice.h>
50 #endif
51 
52 #ifndef _SYS_DISKLABEL
53 #include <sys/disklabel.h>
54 #endif
55 
56 #ifndef _SYS_DISKLABEL
57 #include <sys/msgport.h>
58 #endif
59 
60 struct disk {
61 	struct lwkt_port	d_port;		/* interception port */
62 	struct cdevsw		*d_devsw;	/* our device switch */
63 	struct cdevsw		*d_rawsw;	/* the raw device switch */
64 	u_int			d_flags;
65 	u_int			d_dsflags;
66 	dev_t			d_rawdev;	/* backing raw device */
67 	dev_t			d_cdev;		/* special whole-disk part */
68 	struct diskslices	*d_slice;
69 	struct disklabel	d_label;
70 	LIST_ENTRY(disk)	d_list;
71 };
72 
73 #define DISKFLAG_LOCK		0x1
74 #define DISKFLAG_WANTED		0x2
75 
76 dev_t disk_create (int unit, struct disk *disk, int flags, struct cdevsw *sw);
77 void disk_destroy (struct disk *disk);
78 int disk_dumpcheck (dev_t dev, u_int *count, u_int *blkno, u_int *secsize);
79 struct disk *disk_enumerate (struct disk *disk);
80 void disk_invalidate (struct disk *disk);
81 
82 #endif /* _SYS_DISK_H_ */
83