summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Ertl <le@FreeBSD.org>2005-01-19 14:49:26 +0000
committerLukas Ertl <le@FreeBSD.org>2005-01-19 14:49:26 +0000
commiteba5b9dfce1f7e6905221a266e43904a6bf884fe (patch)
treef0056ad8991dae01dd7a731488a62b6b425e75ad
parentf11c507c455c4de4ba7eab4fed2d16b71382aa70 (diff)
Notes
-rw-r--r--sys/geom/vinum/geom_vinum_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/vinum/geom_vinum_init.c b/sys/geom/vinum/geom_vinum_init.c
index 95b3d6a8dfa8..963b98bd77e4 100644
--- a/sys/geom/vinum/geom_vinum_init.c
+++ b/sys/geom/vinum/geom_vinum_init.c
@@ -313,7 +313,7 @@ gv_sync(struct gv_volume *v)
sync->from = up;
sync->to = p;
sync->syncsize = GV_DFLT_SYNCSIZE;
- kthread_create(gv_sync_td, sync, NULL, 0, 0, "sync_p '%s'",
+ kthread_create(gv_sync_td, sync, NULL, 0, 0, "gv_sync '%s'",
p->name);
}
}
@@ -363,7 +363,7 @@ gv_init_sd(struct gv_sd *s)
s->flags &= ~GV_SD_INITCANCEL;
/* Spawn the thread that does the work for us. */
- kthread_create(gv_init_td, s, NULL, 0, 0, "init_sd %s", s->name);
+ kthread_create(gv_init_td, s, NULL, 0, 0, "gv_init %s", s->name);
return (0);
}