From 9b014aeab1ffdbfa2e6603528909385fdbe5778d Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 14 May 2012 22:39:10 -0700 Subject: [PATCH] hammer2 - last_tid renamed to mirror_tid in volume header * The volume header needs a discrete field to hold the highest-propagated mirror_tid value. --- sbin/newfs_hammer2/newfs_hammer2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/newfs_hammer2/newfs_hammer2.c b/sbin/newfs_hammer2/newfs_hammer2.c index 5d39337db5..629dff2d28 100644 --- a/sbin/newfs_hammer2/newfs_hammer2.c +++ b/sbin/newfs_hammer2/newfs_hammer2.c @@ -627,7 +627,7 @@ format_hammer2(int fd, hammer2_off_t total_space, hammer2_off_t free_space) vol->allocator_beg = alloc_base; vol->sroot_blockset.blockref[0] = sroot_blockref; - vol->last_tid = 0; + vol->mirror_tid = 0; vol->alloc_tid = 16; vol->icrc_sects[HAMMER2_VOL_ICRC_SECT1] = hammer2_icrc32((char *)vol + HAMMER2_VOLUME_ICRC1_OFF, -- 2.41.0