diff options
| author | Greg Lehey <grog@FreeBSD.org> | 2003-05-05 05:34:39 +0000 |
|---|---|---|
| committer | Greg Lehey <grog@FreeBSD.org> | 2003-05-05 05:34:39 +0000 |
| commit | 8b2087987e32169eaf98764f283f950a2c0e1116 (patch) | |
| tree | d393cf4b8f5f2edc5b264ba4a1f2b9aeb68fd6a2 /sys/dev | |
| parent | e802b7f05ee439aa82e56855268b523ccb4139db (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/vinum/vinumobj.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/vinum/vinumobj.h b/sys/dev/vinum/vinumobj.h index 9ee5e1ec7ee21..1ea1f1acf34c2 100644 --- a/sys/dev/vinum/vinumobj.h +++ b/sys/dev/vinum/vinumobj.h @@ -37,7 +37,7 @@ * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. * - * $Id: vinumobj.h,v 1.2 2001/05/23 23:04:18 grog Exp grog $ + * $Id: vinumobj.h,v 1.5 2003/04/28 02:54:43 grog Exp $ * $FreeBSD$ */ @@ -66,7 +66,7 @@ enum objflags { VF_WLABEL = 0x20, /* label area is writable */ VF_LABELLING = 0x40, /* unit is currently being labelled */ VF_WANTED = 0x80, /* someone is waiting to obtain a lock */ - VF_RAW = 0x100, /* raw volume (no filesystem) */ + VF_RAW = 0x100, /* raw volume (no file system) */ VF_LOADED = 0x200, /* module is loaded */ VF_CONFIGURING = 0x400, /* somebody is changing the config */ VF_WILL_CONFIGURE = 0x800, /* somebody wants to change the config */ @@ -280,7 +280,8 @@ struct _volume char name[MAXVOLNAME]; /* name of volume */ enum volumestate state; /* current state */ int plexes; /* number of plexes */ - int preferred_plex; /* plex to read from, -1 for round-robin */ + int preferred_plex; /* index of plex to read from, + * -1 for round-robin */ /* * index of plex used for last read, for * round-robin. |
