diff options
author | phk <phk@FreeBSD.org> | 2002-09-15 12:50:37 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2002-09-15 12:50:37 +0000 |
commit | 9db554d5ce071b83f8dca7a25dc866469116cb5c (patch) | |
tree | 422951ceb1187789a3cd6e7fcfac4acd00ccedd1 /sys | |
parent | 2c45f11386f85e820caa981335998889102ba202 (diff) | |
download | FreeBSD-src-9db554d5ce071b83f8dca7a25dc866469116cb5c.zip FreeBSD-src-9db554d5ce071b83f8dca7a25dc866469116cb5c.tar.gz |
Remove the unused _bio_buf field. I can't even remember if this ever got
to be used in the first place.
Spotted by: bde
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/bio.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/sys/bio.h b/sys/sys/bio.h index 8b28838..49b25dc 100644 --- a/sys/sys/bio.h +++ b/sys/sys/bio.h @@ -67,7 +67,6 @@ struct bio { long bio_bcount; /* Valid bytes in buffer. */ caddr_t bio_data; /* Memory, superblocks, indirect etc. */ u_int bio_flags; /* BIO_ flags. */ - struct buf *_bio_buf; /* Parent buffer. */ int bio_error; /* Errno for BIO_ERROR. */ long bio_resid; /* Remaining I/0 in bytes. */ void (*bio_done)(struct bio *); |