summaryrefslogtreecommitdiffstats
path: root/sys/geom/geom_ctl.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2002-10-20 20:28:24 +0000
committerphk <phk@FreeBSD.org>2002-10-20 20:28:24 +0000
commitaf63f9546ade194575238522dacd38cebe3b63f6 (patch)
tree4be4d44cd73707526477ac8dedf166de6841e46d /sys/geom/geom_ctl.c
parentf0693daa1f5896bbd37f2ad85ba732389ac99646 (diff)
downloadFreeBSD-src-af63f9546ade194575238522dacd38cebe3b63f6.zip
FreeBSD-src-af63f9546ade194575238522dacd38cebe3b63f6.tar.gz
Now that the sectorsize and mediasize are properties of the provider,
don't take the detour over the I/O path to discover them using getattr(), we can just pick them out directly. Do note though, that for now they are only valid after the first open of the underlying disk device due compatibility with the old disk_create() API. This will change in the future so they will always be valid. Sponsored by: DARPA & NAI Labs.
Diffstat (limited to 'sys/geom/geom_ctl.c')
-rw-r--r--sys/geom/geom_ctl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/geom/geom_ctl.c b/sys/geom/geom_ctl.c
index 3d24296..1ae88fb 100644
--- a/sys/geom/geom_ctl.c
+++ b/sys/geom/geom_ctl.c
@@ -85,6 +85,7 @@ g_ctl_init2(void *p __unused)
gp->start = g_ctl_start;
gp->access = g_ctl_access;
pp = g_new_providerf(gp, "%s", gp->name);
+ pp->sectorsize = 512;
g_error_provider(pp, 0);
}
OpenPOWER on IntegriCloud