From 67c58cd7290949090db590a8f59ddfbc3f65a1b8 Mon Sep 17 00:00:00 2001 From: Alexander Motin Date: Sat, 29 Jan 2022 22:12:43 -0500 Subject: [PATCH] GEOM: Remove g_wait_sim. It seems never been used since addition. --- sys/geom/geom_int.h | 2 +- sys/geom/geom_subr.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/geom/geom_int.h b/sys/geom/geom_int.h index 67c46d71588..bef5374e6f3 100644 --- a/sys/geom/geom_int.h +++ b/sys/geom/geom_int.h @@ -59,7 +59,7 @@ void g_do_wither(void); /* geom_subr.c */ extern struct class_list_head g_classes; -extern char *g_wait_event, *g_wait_sim, *g_wait_up, *g_wait_down; +extern char *g_wait_event, *g_wait_up, *g_wait_down; void g_wither_washer(void); /* geom_io.c */ diff --git a/sys/geom/geom_subr.c b/sys/geom/geom_subr.c index abaae5ccf57..25fa7b4185c 100644 --- a/sys/geom/geom_subr.c +++ b/sys/geom/geom_subr.c @@ -71,7 +71,7 @@ SDT_PROVIDER_DEFINE(geom); struct class_list_head g_classes = LIST_HEAD_INITIALIZER(g_classes); static struct g_tailq_head geoms = TAILQ_HEAD_INITIALIZER(geoms); -char *g_wait_event, *g_wait_up, *g_wait_down, *g_wait_sim; +char *g_wait_event, *g_wait_up, *g_wait_down; struct g_hh00 { struct g_class *mp; -- 2.45.0