diff options
author | le <le@FreeBSD.org> | 2004-09-13 17:44:47 +0000 |
---|---|---|
committer | le <le@FreeBSD.org> | 2004-09-13 17:44:47 +0000 |
commit | a4de4268bdab3fb20f0d1c0617836528eca0ef1e (patch) | |
tree | 896c5b6681d2241fcd77fe2fa6c7fbe08258bb66 /sys/geom/vinum/geom_vinum_plex.c | |
parent | 12835c964a25e26721517727ab9240201ec3ed2b (diff) | |
download | FreeBSD-src-a4de4268bdab3fb20f0d1c0617836528eca0ef1e.zip FreeBSD-src-a4de4268bdab3fb20f0d1c0617836528eca0ef1e.tar.gz |
Rename gv_kill_thread() to gv_kill_plex_thread(), since there are more
threads to come.
Diffstat (limited to 'sys/geom/vinum/geom_vinum_plex.c')
-rw-r--r-- | sys/geom/vinum/geom_vinum_plex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/vinum/geom_vinum_plex.c b/sys/geom/vinum/geom_vinum_plex.c index 448f55e..8cfa6be 100644 --- a/sys/geom/vinum/geom_vinum_plex.c +++ b/sys/geom/vinum/geom_vinum_plex.c @@ -67,7 +67,7 @@ gv_plex_orphan(struct g_consumer *cp) p = gp->softc; if (p != NULL) { - gv_kill_thread(p); + gv_kill_plex_thread(p); p->geom = NULL; p->provider = NULL; p->consumer = NULL; @@ -468,7 +468,7 @@ gv_plex_destroy_geom(struct gctl_req *req, struct g_class *mp, * If this is a RAID5 plex, check if its worker thread is still active * and signal it to self destruct. */ - gv_kill_thread(p); + gv_kill_plex_thread(p); /* g_free(sc); */ g_wither_geom(gp, ENXIO); return (0); |