Scaffolding for High Availability code. The actual code will probably

come tomorrow.

Submitted by:	Simon Shapiro <shimon@simon-shapiro.org>
This commit is contained in:
Eivind Eklund 1998-04-02 04:25:41 +00:00
parent 512f816a5d
commit a0eea1d6ed
4 changed files with 8 additions and 2 deletions

View File

@ -12,6 +12,7 @@
%token BIO
%token BUS
%token CAM
%token HA
%token COMMA
%token CONFIG
%token CONFLICTS
@ -631,6 +632,8 @@ Info:
= { cur.d_mask = "bio"; } |
CAM
= { cur.d_mask = "cam"; } |
HA
= { cur.d_mask = "ha"; } |
NET
= { cur.d_mask = "net"; } |
FLAGS NUMBER

View File

@ -56,6 +56,7 @@ struct kt {
{ "bio", BIO },
{ "bus", BUS },
{ "cam", CAM},
{ "ha", HA},
{ "conflicts", CONFLICTS },
#endif
{ "config", CONFIG },

View File

@ -36,7 +36,7 @@
static char sccsid[] = "@(#)mkglue.c 8.1 (Berkeley) 6/6/93";
#endif
static const char rcsid[] =
"$Id: mkglue.c,v 1.12 1997/09/15 06:37:08 charnier Exp $";
"$Id: mkglue.c,v 1.13 1997/09/21 22:12:49 gibbs Exp $";
#endif /* not lint */
/*
@ -384,6 +384,7 @@ vector()
vector_devtab(fp, "tty", &dev_id);
vector_devtab(fp, "net", &dev_id);
vector_devtab(fp, "cam", &dev_id);
vector_devtab(fp, "ha", &dev_id);
vector_devtab(fp, "null", &dev_id);
fprintf(fp, "\"\n\n");
fprintf(fp, "#define\tNR_DEVICES\t%d\n", dev_id);

View File

@ -36,7 +36,7 @@
static char sccsid[] = "@(#)mkioconf.c 8.2 (Berkeley) 1/21/94";
#endif
static const char rcsid[] =
"$Id: mkioconf.c,v 1.32 1997/09/17 06:20:44 charnier Exp $";
"$Id: mkioconf.c,v 1.33 1997/09/21 22:12:50 gibbs Exp $";
#endif /* not lint */
#include <err.h>
@ -699,6 +699,7 @@ i386_ioconf()
isa_devtab(fp, "tty", &dev_id);
isa_devtab(fp, "net", &dev_id);
isa_devtab(fp, "cam", &dev_id);
isa_devtab(fp, "ha", &dev_id);
isa_devtab(fp, "null", &dev_id);
}
if (seen_scbus)