1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00

Add flag keyword w.

This commit is contained in:
Greg Lehey 1999-04-10 08:10:55 +00:00
parent 301ef407a4
commit cea0c59dfa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45537
2 changed files with 5 additions and 3 deletions

View File

@ -33,7 +33,7 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
* $Id: vinumkw.h,v 1.11 1999/01/18 03:32:10 grog Exp grog $
* $Id: vinumkw.h,v 1.12 1999/03/02 02:22:56 grog Exp grog $
*/
#ifdef KERNEL
@ -96,6 +96,7 @@ enum keyword {
kw_r,
kw_s,
kw_v,
kw_w,
kw_round, /* round robin */
kw_prefer, /* prefer plex */
kw_device,

View File

@ -33,7 +33,7 @@
* otherwise) arising in any way out of the use of this software, even if
* advised of the possibility of such damage.
*
* $Id: vinumparser.c,v 1.14 1999/01/18 03:30:07 grog Exp grog $
* $Id: vinumparser.c,v 1.15 1999/03/02 02:22:39 grog Exp grog $
*/
/*
@ -168,7 +168,8 @@ struct _keywords flag_keywords[] =
flagkeypair(d),
flagkeypair(v),
flagkeypair(s),
flagkeypair(r)
flagkeypair(r),
flagkeypair(w)
};
struct keywordset flag_set = KEYWORDSET(flag_keywords);