diff options
author | phk <phk@FreeBSD.org> | 2003-06-01 13:47:51 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-06-01 13:47:51 +0000 |
commit | 069191fcbf030ae2966ebec47a4080756e9cd7f2 (patch) | |
tree | b5cc7f300d62bf1910b246c6ef717532135ce150 /sys/geom/geom_sunlabel.c | |
parent | 5a2388f470b87f347bd60da1d099299e1a3ed609 (diff) | |
download | FreeBSD-src-069191fcbf030ae2966ebec47a4080756e9cd7f2.zip FreeBSD-src-069191fcbf030ae2966ebec47a4080756e9cd7f2.tar.gz |
Simplify the GEOM OAM api: Drop the request type, and let everything
hinge on the "verb" parameter which the class gets to interpret as
it sees fit.
Move the entire request into the kernel and move changed parameters
back when done.
Diffstat (limited to 'sys/geom/geom_sunlabel.c')
-rw-r--r-- | sys/geom/geom_sunlabel.c | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/sys/geom/geom_sunlabel.c b/sys/geom/geom_sunlabel.c index f37c0dc..cfade35 100644 --- a/sys/geom/geom_sunlabel.c +++ b/sys/geom/geom_sunlabel.c @@ -169,22 +169,26 @@ g_sunlabel_callconfig(void *arg, int flag) /* * NB! curthread is user process which GCTL'ed. */ -static int -g_sunlabel_config(struct gctl_req *req, struct g_geom *gp, const char *verb) +static void +g_sunlabel_config(struct gctl_req *req, struct g_class *mp, const char *verb) { u_char *label; int error, i; struct g_hh01 h0h0; struct g_slicer *gsp; + struct g_geom *gp; struct g_consumer *cp; g_topology_assert(); + gp = gctl_get_geom(req, mp, "geom"); + if (gp == NULL) + return; cp = LIST_FIRST(&gp->consumer); gsp = gp->softc; if (!strcmp(verb, "write label")) { label = gctl_get_paraml(req, "label", SUN_SIZE); if (label == NULL) - return (EINVAL); + return; h0h0.gp = gp; h0h0.ms = gsp->softc; h0h0.label = label; @@ -192,24 +196,20 @@ g_sunlabel_config(struct gctl_req *req, struct g_geom *gp, const char *verb) /* XXX: Does this reference register with our selfdestruct code ? */ error = g_access_rel(cp, 1, 1, 1); if (error) { - g_free(label); - return (error); + gctl_error(req, "could not access consumer"); + return; } - g_topology_unlock(); - g_waitfor_event(g_sunlabel_callconfig, &h0h0, M_WAITOK, gp, NULL); - g_topology_lock(); - error = h0h0.error; + g_sunlabel_callconfig(&h0h0, 0); g_access_rel(cp, -1, -1, -1); - g_free(label); } else if (!strcmp(verb, "write bootcode")) { label = gctl_get_paraml(req, "bootcode", SUN_BOOTSIZE); if (label == NULL) - return (EINVAL); + return; /* XXX: Does this reference register with our selfdestruct code ? */ error = g_access_rel(cp, 1, 1, 1); if (error) { - g_free(label); - return (error); + gctl_error(req, "could not access consumer"); + return; } for (i = 0; i < SUN_NPART; i++) { if (gsp->slices[i].length <= SUN_BOOTSIZE) @@ -219,12 +219,9 @@ g_sunlabel_config(struct gctl_req *req, struct g_geom *gp, const char *verb) SUN_BOOTSIZE - SUN_SIZE); } g_access_rel(cp, -1, -1, -1); - g_free(label); } else { - return (gctl_error(req, "Unknown verb parameter")); + gctl_error(req, "Unknown verb parameter"); } - - return (error); } static struct g_geom * @@ -278,7 +275,7 @@ g_sunlabel_taste(struct g_class *mp, struct g_provider *pp, int flags) static struct g_class g_sunlabel_class = { .name = SUNLABEL_CLASS_NAME, .taste = g_sunlabel_taste, - .config_geom = g_sunlabel_config, + .ctlreq = g_sunlabel_config, }; DECLARE_GEOM_CLASS(g_sunlabel_class, g_sunlabel); |