-xfsprogs-2.7.1 (20 Septempber 2005)
+xfsprogs-2.7.2 (28 September 2005)
+ - Fix up xfs_repair segmentation fault due to wrong allocation
+ size.
+
+xfsprogs-2.7.1 (20 September 2005)
- Fix up reporting of devices in xfs_growfs - now uses
/proc/mounts in preference to /etc/mtab.
- Fix a strtok-related bug in the extraction of device names,
also only affecting xfs_growfs.
-xfsprogs-2.7.0 (16 Septempber 2005)
+xfsprogs-2.7.0 (16 September 2005)
- Support for updated extended attributes format (attr2)
- Make xfs_quota tool issue a quota sync in all the needed
places, before reporting, to counter affects of delayed
return;
}
for (i = 0; i < agno; i++) {
- size = roundup(numblocks / (NBBY/XR_BB),sizeof(__uint64_t));
+ size = roundup((numblocks+(NBBY/XR_BB)-1) / (NBBY/XR_BB),
+ sizeof(__uint64_t));
ba_bmap[i] = (__uint64_t*)memalign(sizeof(__uint64_t), size);
if (!ba_bmap[i]) {