From 3a5ac9f9e07fbbb8708337d836ebc33de49caffa Mon Sep 17 00:00:00 2001 From: pjd Date: Tue, 31 Oct 2006 22:18:33 +0000 Subject: [PATCH] Add fs_unrefs field to the super block structure. Sponsored by: home.pl --- tools/tools/find-sb/mini_ufs.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/tools/find-sb/mini_ufs.h b/tools/tools/find-sb/mini_ufs.h index 033d96740a92..82a864dd6a8e 100644 --- a/tools/tools/find-sb/mini_ufs.h +++ b/tools/tools/find-sb/mini_ufs.h @@ -124,7 +124,8 @@ struct fs { u_int *fs_active; /* (u) used by snapshots to track fs */ int32_t fs_old_cpc; /* cyl per cycle in postbl */ int32_t fs_maxbsize; /* maximum blocking factor permitted */ - int64_t fs_sparecon64[17]; /* old rotation block list head */ + int64_t fs_unrefs; /* number of unreferenced inodes */ + int64_t fs_sparecon64[16]; /* old rotation block list head */ int64_t fs_sblockloc; /* byte offset of standard superblock */ struct csum_total fs_cstotal; /* (u) cylinder summary information */ ufs_time_t fs_time; /* last time written */