git: 67c58cd72909 - main - GEOM: Remove g_wait_sim.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 30 Jan 2022 03:14:58 UTC
The branch main has been updated by mav:
URL: https://cgit.FreeBSD.org/src/commit/?id=67c58cd7290949090db590a8f59ddfbc3f65a1b8
commit 67c58cd7290949090db590a8f59ddfbc3f65a1b8
Author: Alexander Motin <mav@FreeBSD.org>
AuthorDate: 2022-01-30 03:12:43 +0000
Commit: Alexander Motin <mav@FreeBSD.org>
CommitDate: 2022-01-30 03:12:43 +0000
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 67c46d715885..bef5374e6f38 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 abaae5ccf57f..25fa7b4185c4 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;