diff options
| author | Lukas Ertl <le@FreeBSD.org> | 2004-07-29 11:28:24 +0000 |
|---|---|---|
| committer | Lukas Ertl <le@FreeBSD.org> | 2004-07-29 11:28:24 +0000 |
| commit | 691ae40438240832fe461162aa19fe6134278deb (patch) | |
| tree | 84828747af22b380300e88b400f24885f344d0d6 /sbin | |
| parent | d10ab05ebd0f489ae3227e61675c91439c6b31e7 (diff) | |
Notes
Diffstat (limited to 'sbin')
| -rw-r--r-- | sbin/growfs/Makefile | 2 | ||||
| -rw-r--r-- | sbin/growfs/growfs.c | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sbin/growfs/Makefile b/sbin/growfs/Makefile index d6ddfd5c6a2ee..21b559682b282 100644 --- a/sbin/growfs/Makefile +++ b/sbin/growfs/Makefile @@ -10,7 +10,7 @@ PROG= growfs SRCS= growfs.c MAN= growfs.8 -WARNS?= 0 +WARNS?= 6 .if defined(GFSDBG) SRCS+= debug.c diff --git a/sbin/growfs/growfs.c b/sbin/growfs/growfs.c index 6f972fa9c2ecb..cf580716806ca 100644 --- a/sbin/growfs/growfs.c +++ b/sbin/growfs/growfs.c @@ -110,6 +110,12 @@ union dinode { #define DIP(dp, field) \ ((sblock.fs_magic == FS_UFS1_MAGIC) ? \ (uint32_t)(dp)->dp1.field : (dp)->dp2.field) +#define DIP_SET(dp, field, val) do { \ + if (sblock.fs_magic == FS_UFS1_MAGIC) \ + (dp)->dp1.field = (val); \ + else \ + (dp)->dp2.field = (val); \ + } while (0) static ufs2_daddr_t inoblk; /* inode block address */ static char inobuf[MAXBSIZE]; /* inode block */ ino_t maxino; /* last valid inode */ @@ -2420,7 +2426,7 @@ updrefs(int cg, ino_t in, struct gfs_bpp *bp, int fsi, int fso, unsigned int if (iptr == 0) continue; if (cond_bl_upd(&iptr, bp, fsi, fso, Nflag)) { - DIP(ino, di_db[i]) = iptr; + DIP_SET(ino, di_db[i], iptr); inodeupdated++; } } @@ -2434,7 +2440,7 @@ updrefs(int cg, ino_t in, struct gfs_bpp *bp, int fsi, int fso, unsigned int if (iptr == 0) continue; if (cond_bl_upd(&iptr, bp, fsi, fso, Nflag)) { - DIP(ino, di_ib[i]) = iptr; + DIP_SET(ino, di_ib[i], iptr); inodeupdated++; } indirchk(blksperindir, lbn, iptr, numblks, bp, fsi, fso, Nflag); |
