diff options
| author | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2021-04-06 17:43:29 +0000 |
|---|---|---|
| committer | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2021-04-06 17:43:29 +0000 |
| commit | afb6a168f8ee08ac74769464726c396fbef83d0b (patch) | |
| tree | b83584d892146c33e91afe865d80f834757965dd /usr.sbin/makefs/ffs.h | |
| parent | 9e6158d274829249322efb3767e6ac2e690cc4a9 (diff) | |
Diffstat (limited to 'usr.sbin/makefs/ffs.h')
| -rw-r--r-- | usr.sbin/makefs/ffs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/makefs/ffs.h b/usr.sbin/makefs/ffs.h index 8b4fbc33dc83..e1dda429ff26 100644 --- a/usr.sbin/makefs/ffs.h +++ b/usr.sbin/makefs/ffs.h @@ -44,6 +44,7 @@ #include <ufs/ufs/dinode.h> #include <ufs/ffs/fs.h> +#include <stdbool.h> typedef struct { char label[MAXVOLLEN]; /* volume name/label */ @@ -52,6 +53,7 @@ typedef struct { int cpg; /* cylinders per group */ int cpgflg; /* cpg was specified by user */ int density; /* bytes per inode */ + bool min_inodes; /* allocate minimum number of inodes */ int ntracks; /* number of tracks */ int nsectors; /* number of sectors */ int rpm; /* rpm */ |
