Change "dirty" status to "active"

Description...

Signed-off-by: Neil Brown <neilb@cse.unsw.edu.au>
This commit is contained in:
Neil Brown 2005-06-07 23:16:36 +00:00
parent 234a131a33
commit a3fd117c7a
2 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,9 @@ Changes Prior to 1.9.0 release
works.
- Assume '-Q' if just a device is given, rather than being silent.
Changes Prior to this release
- Change "dirty" status to "active" as it was confusing people.
Changes Prior to 1.8.0 release
- Makefile cleanup from Luca Berra <bluca@comedia.it>
- --pid-file (-i) to set a pid file to use with --monitor --daemonise

View File

@ -146,6 +146,7 @@ static void examine_super1(void *sbv)
printf(" Data Offset : %llu sectors\n", (unsigned long long)__le64_to_cpu(sb->data_offset));
if (sb->super_offset)
printf(" Super Offset : %llu sectors\n", (unsigned long long)__le64_to_cpu(sb->super_offset));
printf(" State : %s\n", (__le64_to_cpu(sb->resync_offset)+1)? "active":"clean");
printf(" Device UUID : ");
for (i=0; i<16; i++) {
printf("%02x", sb->set_uuid[i]);