last = conf->reshape_progress - 1;
                sector_nr = last & ~(sector_t)(conf->geo.chunk_mask
                                               & conf->prev.chunk_mask);
-               if (sector_nr + RESYNC_BLOCK_SIZE/512 < last)
-                       sector_nr = last + 1 - RESYNC_BLOCK_SIZE/512;
+               if (sector_nr + RESYNC_SECTORS < last)
+                       sector_nr = last + 1 - RESYNC_SECTORS;
        } else {
                /* 'next' is after the last device address that we
                 * might write to for this chunk in the new layout
                last  = sector_nr | (conf->geo.chunk_mask
                                     & conf->prev.chunk_mask);
 
-               if (sector_nr + RESYNC_BLOCK_SIZE/512 <= last)
-                       last = sector_nr + RESYNC_BLOCK_SIZE/512 - 1;
+               if (sector_nr + RESYNC_SECTORS <= last)
+                       last = sector_nr + RESYNC_SECTORS - 1;
        }
 
        if (need_flush ||