summaryrefslogtreecommitdiff
path: root/bsdfsck/setup.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-08-25 15:22:35 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-08-25 15:22:35 +0000
commite0b5a10f937e3d643b16a28fc9f336ebc5f9b148 (patch)
treeb55b4b255b8812dc95c552f43ec3b9e6707b9e70 /bsdfsck/setup.c
parenteaf1001abe046cf37a4ee8c0f9de836a1e17b64c (diff)
entered into RCS
Diffstat (limited to 'bsdfsck/setup.c')
-rw-r--r--bsdfsck/setup.c19
1 files changed, 16 insertions, 3 deletions
diff --git a/bsdfsck/setup.c b/bsdfsck/setup.c
index 7dd54d52..f65ade47 100644
--- a/bsdfsck/setup.c
+++ b/bsdfsck/setup.c
@@ -33,7 +33,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)setup.c 8.2 (Berkeley) 2/21/94";*/
-static char *rcsid = "$Id: setup.c,v 1.2 1994/08/23 20:03:11 mib Exp $";
+static char *rcsid = "$Id: setup.c,v 1.3 1994/08/25 15:22:35 mib Exp $";
#endif /* not lint */
#define DKTYPENAMES
@@ -43,7 +43,7 @@ static char *rcsid = "$Id: setup.c,v 1.2 1994/08/23 20:03:11 mib Exp $";
#include "../ufs/fs.h"
#include <sys/stat.h>
#include <sys/ioctl.h>
-#include <sys/disklabel.h>
+/* #include <sys/disklabel.h> */
#include <sys/file.h>
#include <errno.h>
#include <stdlib.h>
@@ -62,7 +62,7 @@ setup(dev)
{
long cg, size, asked, i, j;
long bmapsize;
- struct disklabel *lp;
+/* struct disklabel *lp; */
off_t sizepb;
struct stat statb;
struct fs proto;
@@ -100,9 +100,11 @@ setup(dev)
asblk.b_un.b_buf = malloc(SBSIZE);
if (sblk.b_un.b_buf == NULL || asblk.b_un.b_buf == NULL)
errexit("cannot allocate space for superblock\n");
+#if 0
if (lp = getdisklabel((char *)NULL, fsreadfd))
dev_bsize = secsize = lp->d_secsize;
else
+#endif
dev_bsize = secsize = DEV_BSIZE;
/*
* Read in the superblock, looking for alternates if necessary
@@ -391,6 +393,16 @@ badsb(listerr, s)
pfatal("BAD SUPER BLOCK: %s\n", s);
}
+/* XXX */
+calcsb (dev, devfd, fs)
+ char *dev;
+ int devfd;
+ struct fs *fs;
+{
+ return 0;
+}
+
+#if 0
/*
* Calculate a prototype superblock based on information in the disk label.
* When done the cgsblock macro can be calculated and the fs_ncg field
@@ -465,3 +477,4 @@ getdisklabel(s, fd)
}
return (&lab);
}
+#endif