diff options
| author | Michael I. Bushnell <mib@gnu.org> | 1994-09-23 21:50:43 +0000 |
|---|---|---|
| committer | Michael I. Bushnell <mib@gnu.org> | 1994-09-23 21:50:43 +0000 |
| commit | d4d738ac07a1b6280b2cbcca64ec5757071fa846 (patch) | |
| tree | 1602eb5c3d2f85123bbad55dba5297762d77efed | |
| parent | 8a847cdca4840b9834994782789b1e4f69749ae3 (diff) | |
Formerly hyper.c.~12~
| -rw-r--r-- | ufs/hyper.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ufs/hyper.c b/ufs/hyper.c index a59637fb..e63e9eff 100644 --- a/ufs/hyper.c +++ b/ufs/hyper.c @@ -16,7 +16,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "ufs.h" -#include "fs.h" #include "dinode.h" #include <string.h> #include <stdio.h> @@ -60,6 +59,10 @@ get_hypermetadata (void) exit (1); } + assert ((__vm_page_size % DEV_BSIZE) == 0); + assert ((sblock->fs_bsize % DEV_BSIZE) == 0); + assert (__vm_page_size <= sblock->fs_bsize); + /* If this is an old filesystem, then we have some more work to do; some crucial constants might not be set; we are therefore forced to set them here. */ |
