From 15230345fa342bcf0d2f32580a87bf09edaf0cd4 Mon Sep 17 00:00:00 2001 From: Tomohiro Kusumi Date: Fri, 6 Mar 2015 04:23:32 +0900 Subject: [PATCH] sbin/hammer: Fix workaround made in 2f8c6a59 - 'elm->internal.mirror_tid == 0' was not necessary. It failed to detect some cases that it was going to workaround. --- sbin/hammer/cmd_show.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sbin/hammer/cmd_show.c b/sbin/hammer/cmd_show.c index 17a2edb4e0..b2bc843a75 100644 --- a/sbin/hammer/cmd_show.c +++ b/sbin/hammer/cmd_show.c @@ -272,8 +272,7 @@ print_btree_elm(hammer_btree_elm_t elm, int i, u_int8_t type, if (type == HAMMER_BTREE_TYPE_INTERNAL && i == 0 && elm->base.create_tid == 1 && - elm->base.delete_tid == 1 && - elm->internal.mirror_tid == 0) + elm->base.delete_tid == 1) deleted = ' '; /* could use unique mark */ else deleted = 'd'; -- 2.41.0