if (stop > limit)
stop = limit;
+ if (isrel && stop - start < cxt->grain)
+ /* Don't try to be smart on very small partitions and don't
+ * align so small sizes, just follow the resurst */
+ isrel = 0;
+
if (stop < limit) {
if (isrel && alignment_required(cxt)) {
/* the last sector has not been exactly requested (but
user_l = user_f + pa->size - 1;
DBG(LABEL, ul_debug("size defined: %ju, end: %ju (last possible: %ju)",
pa->size, user_l, dflt_l));
- if (user_l != dflt_l && !pa->size_explicit)
- user_l = fdisk_align_lba_in_range(cxt, user_l, user_f, dflt_l) - 1;
-
+ if (user_l != dflt_l && !pa->size_explicit
+ && user_l - user_f > cxt->grain) {
+ user_l = fdisk_align_lba_in_range(cxt, user_l, user_f, dflt_l);
+ if (user_l > user_f)
+ user_l -= 1;
+ }
} else {
for (;;) {
if (!ask)