diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2008-08-22 02:00:13 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2008-08-22 02:00:13 +0000 |
commit | c6721809ba7f5c92bc4e3467237036dede2bbf18 (patch) | |
tree | ae39840f615398dd418d8db40ba1c1813d0bcb54 /sys/dev/biovar.h | |
parent | c503c93462caae532cda73784a279fd9b12491c4 (diff) |
Add a hack to manually kick off rebuilds. This will need some love in the
near future.
ok deraadt
Diffstat (limited to 'sys/dev/biovar.h')
-rw-r--r-- | sys/dev/biovar.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/biovar.h b/sys/dev/biovar.h index 68371bb3211..7987450e687 100644 --- a/sys/dev/biovar.h +++ b/sys/dev/biovar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: biovar.h,v 1.33 2008/08/11 17:28:24 marco Exp $ */ +/* $OpenBSD: biovar.h,v 1.34 2008/08/22 02:00:12 marco Exp $ */ /* * Copyright (c) 2002 Niklas Hallqvist. All rights reserved. @@ -159,7 +159,10 @@ struct bioc_setstate { u_int16_t bs_channel; u_int16_t bs_target; u_int16_t bs_lun; - u_int16_t bs_other_id; /* unused for now */ + u_int16_t bs_other_id_type; /* use other_id instead of ctl */ +#define BIOC_SSOTHER_UNUSED 0x00 +#define BIOC_SSOTHER_DEVT 0x01 + int bs_other_id; /* cram dev_t or other id in here */ int bs_status; /* change to this status */ #define BIOC_SSONLINE 0x00 /* online disk */ |