Round GNOP provider's mediasize to its sectorsize. This prevents KASSERT
in g_io_request when geom classes doing tasting. PR: kern/147852 MFC after: 1 week
This commit is contained in:
parent
610803e3f5
commit
f2b3e9e870
@ -176,6 +176,8 @@ g_nop_create(struct gctl_req *req, struct g_class *mp, struct g_provider *pp,
|
||||
gctl_error(req, "Invalid secsize for provider %s.", pp->name);
|
||||
return (EINVAL);
|
||||
}
|
||||
if (size % secsize != 0)
|
||||
size -= size % secsize;
|
||||
snprintf(name, sizeof(name), "%s%s", pp->name, G_NOP_SUFFIX);
|
||||
LIST_FOREACH(gp, &mp->geom, geom) {
|
||||
if (strcmp(gp->name, name) == 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user