summaryrefslogtreecommitdiffstats
path: root/sys/geom/vinum
diff options
context:
space:
mode:
authorle <le@FreeBSD.org>2005-01-19 14:49:26 +0000
committerle <le@FreeBSD.org>2005-01-19 14:49:26 +0000
commitf03cf50f549cf190d376747261d96f2f0d0f6f3f (patch)
treef0056ad8991dae01dd7a731488a62b6b425e75ad /sys/geom/vinum
parent8c1fee0f75460377513bcc9c1d6951b094b1cad7 (diff)
downloadFreeBSD-src-f03cf50f549cf190d376747261d96f2f0d0f6f3f.zip
FreeBSD-src-f03cf50f549cf190d376747261d96f2f0d0f6f3f.tar.gz
Rename synchronization and initialization threads and prefix them
with 'gv_' for consistency.
Diffstat (limited to 'sys/geom/vinum')
-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 95b3d6a..963b98b 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);
}
OpenPOWER on IntegriCloud