Author: ae
Date: Thu Mar 5 10:08:37 2015
New Revision: 279646
URL: https://svnweb.freebsd.org/changeset/base/279646
Log:
MFC r279324:
When gpart(8) is trying automatically determine the first available
block of free space after existing partition, take into account
provider's stripeoffset, since the result will be adjusted to this
value.
PR: 197989
Modified:
stable/10/sbin/geom/class/part/geom_part.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sbin/geom/class/part/geom_part.c
==============================================================================
--- stable/10/sbin/geom/class/part/geom_part.c Thu Mar 5 10:07:09 2015
(r279645)
+++ stable/10/sbin/geom/class/part/geom_part.c Thu Mar 5 10:08:37 2015
(r279646)
@@ -550,7 +550,7 @@ gpart_autofill(struct gctl_req *req)
s = find_provcfg(pp, "end");
first = (off_t)strtoimax(s, NULL, 0) + 1;
- if (first > a_first)
+ if (first + offset > a_first)
a_first = ALIGNUP(first + offset, alignment);
}
if (a_first <= last) {
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "[email protected]"