summaryrefslogtreecommitdiffstats
path: root/sys/geom/geom_dev.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/geom/geom_dev.c')
-rw-r--r--sys/geom/geom_dev.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/sys/geom/geom_dev.c b/sys/geom/geom_dev.c
index 65ae722..a00ce6a 100644
--- a/sys/geom/geom_dev.c
+++ b/sys/geom/geom_dev.c
@@ -76,19 +76,17 @@ static struct g_class g_dev_class = {
.taste = g_dev_taste,
};
-int
+void
g_dev_print(void)
{
struct g_geom *gp;
+ char const *p = "";
- g_waitidle();
- if (LIST_EMPTY(&g_dev_class.geom))
- return (0);
- printf("List of GEOM disk devices:\n ");
- LIST_FOREACH(gp, &g_dev_class.geom, geom)
- printf(" %s", gp->name);
+ LIST_FOREACH(gp, &g_dev_class.geom, geom) {
+ printf("%s%s", p, gp->name);
+ p = " ";
+ }
printf("\n");
- return (1);
}
/*
OpenPOWER on IntegriCloud