]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
ata: fix "ering" sysfs time printing
authorArnd Bergmann <arnd@arndb.de>
Fri, 17 Jun 2016 15:37:12 +0000 (17:37 +0200)
committerTejun Heo <tj@kernel.org>
Fri, 17 Jun 2016 16:07:11 +0000 (12:07 -0400)
The sysfs file for the libata error handling has multiple issues
in the way it prints time stamps:

 * it prints a 9-digit nanosecond value using a %06lu format string,
   which drops some leading zeroes
 * it converts a 64-bit jiffes value to a timespec using
   jiffies_to_timespec(), which takes a 'long' argument, so the
   result is wrong after a jiffies overflow (49 days).
 * we try to avoid using timespec because that generally overflows
   in 2038, although this particular usage is ok.

This replaces the jiffies_to_timespec call with an open-coded
implementation that gets it right.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Tejun Heo <tj@kernel.org>
drivers/ata/libata-transport.c

index e2d94972962d69d766e99e8ade594040ae8d9429..7ef16c08505879127a3b433979119455e17d1ff4 100644 (file)
@@ -495,12 +495,13 @@ struct ata_show_ering_arg {
 static int ata_show_ering(struct ata_ering_entry *ent, void *void_arg)
 {
        struct ata_show_ering_arg* arg = void_arg;
-       struct timespec time;
+       u64 seconds;
+       u32 rem;
 
-       jiffies_to_timespec(ent->timestamp,&time);
+       seconds = div_u64_rem(ent->timestamp, HZ, &rem);
        arg->written += sprintf(arg->buf + arg->written,
-                              "[%5lu.%06lu]",
-                              time.tv_sec, time.tv_nsec);
+                               "[%5llu.%09lu]", seconds,
+                               rem * NSEC_PER_SEC / HZ);
        arg->written += get_ata_err_names(ent->err_mask,
                                          arg->buf + arg->written);
        return 0;