Add progress messages to zero command.
authorRichard Jones <rjones@redhat.com>
Sat, 28 Aug 2010 13:29:07 +0000 (14:29 +0100)
committerRichard Jones <rjones@redhat.com>
Wed, 1 Sep 2010 09:00:37 +0000 (10:00 +0100)
daemon/zero.c
src/generator.ml

index df4ebd6..43089e0 100644 (file)
@@ -42,12 +42,14 @@ do_zero (const char *device)
 
   memset (buf, 0, sizeof buf);
 
-  for (i = 0; i < 32; ++i)
+  for (i = 0; i < 32; ++i) {
     if (write (fd, buf, sizeof buf) != sizeof buf) {
       reply_with_perror ("write: %s", device);
       close (fd);
       return -1;
     }
+    notify_progress ((uint64_t) i, 32);
+  }
 
   if (close (fd) == -1) {
     reply_with_perror ("close: %s", device);
index c9a99e1..fb9735a 100755 (executable)
@@ -2698,7 +2698,7 @@ Checking or repairing NTFS volumes is not supported
 
 This command is entirely equivalent to running C<fsck -a -t fstype device>.");
 
-  ("zero", (RErr, [Device "device"]), 85, [],
+  ("zero", (RErr, [Device "device"]), 85, [Progress],
    [InitBasicFS, Always, TestOutput (
       [["umount"; "/dev/sda1"];
        ["zero"; "/dev/sda1"];