rf_netbsd.h revision 1.5.4.1 1 1.5.4.1 thorpej /* $NetBSD: rf_netbsd.h,v 1.5.4.1 1999/06/21 01:18:58 thorpej Exp $ */
2 1.1 oster
3 1.1 oster /*-
4 1.1 oster * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
5 1.1 oster * All rights reserved.
6 1.1 oster *
7 1.1 oster * This code is derived from software contributed to The NetBSD Foundation
8 1.5.4.1 thorpej * by Greg Oster; Jason R. Thorpe.
9 1.1 oster *
10 1.1 oster * Redistribution and use in source and binary forms, with or without
11 1.1 oster * modification, are permitted provided that the following conditions
12 1.1 oster * are met:
13 1.1 oster * 1. Redistributions of source code must retain the above copyright
14 1.1 oster * notice, this list of conditions and the following disclaimer.
15 1.1 oster * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 oster * notice, this list of conditions and the following disclaimer in the
17 1.1 oster * documentation and/or other materials provided with the distribution.
18 1.1 oster * 3. All advertising materials mentioning features or use of this software
19 1.1 oster * must display the following acknowledgement:
20 1.1 oster * This product includes software developed by the NetBSD
21 1.1 oster * Foundation, Inc. and its contributors.
22 1.1 oster * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 oster * contributors may be used to endorse or promote products derived
24 1.1 oster * from this software without specific prior written permission.
25 1.1 oster *
26 1.1 oster * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 oster * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 oster * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 oster * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 oster * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 oster * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 oster * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 oster * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 oster * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 oster * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 oster * POSSIBILITY OF SUCH DAMAGE.
37 1.1 oster */
38 1.1 oster
39 1.1 oster #ifndef _RF__RF_NETBSDSTUFF_H_
40 1.1 oster #define _RF__RF_NETBSDSTUFF_H_
41 1.1 oster
42 1.2 oster #ifdef _KERNEL
43 1.1 oster #include <sys/fcntl.h>
44 1.1 oster #include <sys/systm.h>
45 1.1 oster #include <sys/namei.h>
46 1.1 oster #include <sys/vnode.h>
47 1.4 oster #endif /* _KERNEL */
48 1.1 oster
49 1.4 oster /* The per-component label information that the user can set */
50 1.4 oster typedef struct RF_ComponentInfo_s {
51 1.4 oster int row; /* the row number of this component */
52 1.4 oster int column; /* the column number of this component */
53 1.4 oster int serial_number; /* a user-specified serial number for this
54 1.4 oster RAID set */
55 1.4 oster } RF_ComponentInfo_t;
56 1.4 oster
57 1.4 oster /* The per-component label information */
58 1.4 oster typedef struct RF_ComponentLabel_s {
59 1.4 oster int version; /* The version of this label. */
60 1.4 oster int serial_number; /* a user-specified serial number for this
61 1.4 oster RAID set */
62 1.4 oster int mod_counter; /* modification counter. Changed (usually
63 1.4 oster by incrementing) every time the label
64 1.4 oster is changed */
65 1.4 oster int row; /* the row number of this component */
66 1.4 oster int column; /* the column number of this component */
67 1.4 oster int num_rows; /* number of rows in this RAID set */
68 1.4 oster int num_columns; /* number of columns in this RAID set */
69 1.4 oster int clean; /* 1 when clean, 0 when dirty */
70 1.4 oster int status; /* rf_ds_optimal, rf_ds_dist_spared, whatever. */
71 1.4 oster } RF_ComponentLabel_t;
72 1.4 oster
73 1.5 oster typedef struct RF_SingleComponent_s {
74 1.5 oster int row;
75 1.5 oster int column;
76 1.5 oster char component_name[50]; /* name of the component */
77 1.5 oster } RF_SingleComponent_t;
78 1.4 oster
79 1.4 oster #ifdef _KERNEL
80 1.4 oster
81 1.4 oster /* XXX this is *not* the place for these... */
82 1.5 oster int rf_add_hot_spare(RF_Raid_t *raidPtr, RF_SingleComponent_t *sparePtr);
83 1.5 oster int rf_remove_hot_spare(RF_Raid_t *raidPtr, RF_SingleComponent_t *sparePtr);
84 1.1 oster
85 1.1 oster
86 1.1 oster struct raidcinfo {
87 1.4 oster struct vnode *ci_vp; /* component device's vnode */
88 1.4 oster dev_t ci_dev; /* component device's dev_t */
89 1.4 oster RF_ComponentLabel_t ci_label; /* components RAIDframe label */
90 1.1 oster #if 0
91 1.3 oster size_t ci_size; /* size */
92 1.3 oster char *ci_path; /* path to component */
93 1.3 oster size_t ci_pathlen; /* length of component path */
94 1.1 oster #endif
95 1.1 oster };
96 1.4 oster
97 1.4 oster
98 1.4 oster #endif /* _KERNEL */
99 1.4 oster #endif /* _RF__RF_NETBSDSTUFF_H_ */
100