Instead of MSW.LSW, just print it as a 64bit number.
arrays.
- Fix problem with failing to add devices to v.large (>4TB) arrays,
cause by problems with device-size overflow.
+ - For v0.90 superblocks, print the 'Events' count as a real count,
+ not 2 numbers separated by a dot.
Changes Prior to 2.6.4 release
- Make "--create --auto=mdp" work for non-standard device names.
printf(" Checksum : %x - correct\n", sb->sb_csum);
else
printf(" Checksum : %x - expected %lx\n", sb->sb_csum, calc_sb0_csum(sb));
- printf(" Events : %d.%d\n", sb->events_hi, sb->events_lo);
+ printf(" Events : %llu\n",
+ ((unsigned long long)sb->events_hi << 32)
+ + sb->events_lo);
printf("\n");
if (sb->level == 5) {
c = map_num(r5layout, sb->layout);