diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-27 07:44:21 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-27 07:44:21 +0000 |
commit | 65620acc2871184197dc498b893432ffb3749cbe (patch) | |
tree | 42d67faff1f5d8d4e2104c88747cd3b4a1073ef4 /sys/arch/i386/include/biosvar.h | |
parent | e4f9ac9eb6d1f6046bd18c33965dc1411d68ccb8 (diff) |
A flag added to diskinfo used by the kernel to mark devices already mapped
to BSD dittos.
Diffstat (limited to 'sys/arch/i386/include/biosvar.h')
-rw-r--r-- | sys/arch/i386/include/biosvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/include/biosvar.h b/sys/arch/i386/include/biosvar.h index aececb9ed44..36c13579010 100644 --- a/sys/arch/i386/include/biosvar.h +++ b/sys/arch/i386/include/biosvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: biosvar.h,v 1.24 1997/10/25 07:02:36 mickey Exp $ */ +/* $OpenBSD: biosvar.h,v 1.25 1997/10/27 07:44:20 niklas Exp $ */ /* * Copyright (c) 1997 Michael Shalayeff @@ -114,6 +114,7 @@ typedef struct _bios_diskinfo { #define BDI_INVALID 0x00000001 /* I/O error during checksumming */ #define BDI_GOODLABEL 0x00000002 /* Had SCSI or ST506/ESDI disklabel */ #define BDI_BADLABEL 0x00000004 /* Had another disklabel */ +#define BDI_PICKED 0x80000000 /* kernel-only: cksum matched */ } bios_diskinfo_t; |