1 /* 2 * @(#)bivar.h 7.1 (Berkeley) 05/14/88 3 */ 4 5 /* 6 * Software status per BI node. 7 */ 8 9 struct binode_status { 10 /* int bh_type; /* type of adapter */ 11 struct biiregs *bh_bi; /* virt addr of registers */ 12 struct biiregs *bh_physbi; /* phys addr of registers */ 13 int bh_errcnt; /* number of errors */ 14 int bh_ivec; /* interrupt vector */ 15 int bh_arb; /* arbitration */ 16 }; 17 18 /* 19 * ... per BI 20 */ 21 struct bi_hd { 22 short bh_nodes; /* which nodes are present */ 23 struct binode_status bh_nodes[16]; /* info about those nodes */ 24 }; 25