diff --git a/sys/geom/part/g_part.c b/sys/geom/part/g_part.c index 3c4519860ac..a92b8482675 100644 --- a/sys/geom/part/g_part.c +++ b/sys/geom/part/g_part.c @@ -1316,7 +1316,9 @@ g_part_ctl_resize(struct gctl_req *req, struct g_part_parms *gpp) error = G_PART_RESIZE(table, entry, gpp); if (error) { - gctl_error(req, "%d", error); + gctl_error(req, "%d%s", error, error != EBUSY ? "": + " resizing will lead to unexpected shrinking" + " due to alignment"); return (error); }