diff options
Diffstat (limited to 'sys/dev/biovar.h')
-rw-r--r-- | sys/dev/biovar.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/biovar.h b/sys/dev/biovar.h index 7987450e687..5730b032946 100644 --- a/sys/dev/biovar.h +++ b/sys/dev/biovar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: biovar.h,v 1.34 2008/08/22 02:00:12 marco Exp $ */ +/* $OpenBSD: biovar.h,v 1.35 2009/11/22 17:01:18 jsing Exp $ */ /* * Copyright (c) 2002 Niklas Hallqvist. All rights reserved. @@ -38,6 +38,11 @@ struct bio_common { void *bc_cookie; }; +struct bio_device { + void *cookie; + char dev[16]; +}; + /* convert name to a cookie */ #define BIOCLOCATE _IOWR('B', 0, struct bio_locate) struct bio_locate { |