diff options
| author | Mike Smith <msmith@FreeBSD.org> | 1998-11-02 23:28:11 +0000 |
|---|---|---|
| committer | Mike Smith <msmith@FreeBSD.org> | 1998-11-02 23:28:11 +0000 |
| commit | af1f6e0673515936750cc5079ca5afd238ec925c (patch) | |
| tree | 7f3f914cc8325a022109c56cea12a94a8b62daba /sys/boot/common/bootstrap.h | |
| parent | 3d04f230e5d1c29aa056149a141f1ef308279139 (diff) | |
Notes
Diffstat (limited to 'sys/boot/common/bootstrap.h')
| -rw-r--r-- | sys/boot/common/bootstrap.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/boot/common/bootstrap.h b/sys/boot/common/bootstrap.h index 2eb1d80c33d6..a373e3566210 100644 --- a/sys/boot/common/bootstrap.h +++ b/sys/boot/common/bootstrap.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bootstrap.h,v 1.14 1998/10/21 20:07:04 msmith Exp $ + * $Id: bootstrap.h,v 1.15 1998/10/22 20:20:50 msmith Exp $ */ #include <sys/types.h> @@ -72,6 +72,15 @@ extern size_t strlenout(vm_offset_t str); extern char *strdupout(vm_offset_t str); /* + * Disk block cache + */ +struct bcache_devdata +{ + int (*dv_strategy)(void *devdata, int rw, daddr_t blk, size_t size, void *buf, size_t *rsize); + void *dv_devdata; +}; + +/* * Modular console support. */ struct console |
