diff options
Diffstat (limited to 'sys/miscfs/specfs/specdev.h')
-rw-r--r-- | sys/miscfs/specfs/specdev.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/miscfs/specfs/specdev.h b/sys/miscfs/specfs/specdev.h index 9c225a3..a7e2bab 100644 --- a/sys/miscfs/specfs/specdev.h +++ b/sys/miscfs/specfs/specdev.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)specdev.h 8.6 (Berkeley) 5/21/95 - * $Id: specdev.h,v 1.14 1998/03/08 09:57:40 julian Exp $ + * $Id: specdev.h,v 1.15 1998/04/19 23:32:29 julian Exp $ */ /* @@ -44,7 +44,9 @@ struct specinfo { struct vnode *si_specnext; struct mount *si_mountpoint; dev_t si_rdev; - unsigned long si_blksize; /* smallest IO unit */ + int si_bsize_phys; /* minimum physical block size */ + int si_bsize_best; /* optimal block size / VBLK */ + int si_bsize_max; /* maximum block size */ }; /* * Exported shorthand @@ -53,7 +55,6 @@ struct specinfo { #define v_hashchain v_specinfo->si_hashchain #define v_specnext v_specinfo->si_specnext #define v_specmountpoint v_specinfo->si_mountpoint -#define v_blksize v_specinfo->si_blksize /* * Special device management |