Whamcloud - gitweb
LU-6245 client: remove types abstraction from client code
[fs/lustre-release.git] / lustre / osc / lproc_osc.c
index edc2050..bd370a7 100644 (file)
@@ -184,7 +184,7 @@ static int osc_cached_mb_seq_show(struct seq_file *m, void *v)
 
        seq_printf(m, "used_mb: %ld\n"
                   "busy_cnt: %ld\n"
-                  "reclaim: "LPU64"\n",
+                  "reclaim: %llu\n",
                   (atomic_long_read(&cli->cl_lru_in_list) +
                    atomic_long_read(&cli->cl_lru_busy)) >> shift,
                    atomic_long_read(&cli->cl_lru_busy),
@@ -819,11 +819,11 @@ static int osc_stats_seq_show(struct seq_file *seq, void *v)
 
        seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
                   now.tv_sec, now.tv_usec);
-       seq_printf(seq, "lockless_write_bytes\t\t"LPU64"\n",
+       seq_printf(seq, "lockless_write_bytes\t\t%llu\n",
                   stats->os_lockless_writes);
-       seq_printf(seq, "lockless_read_bytes\t\t"LPU64"\n",
+       seq_printf(seq, "lockless_read_bytes\t\t%llu\n",
                   stats->os_lockless_reads);
-       seq_printf(seq, "lockless_truncate\t\t"LPU64"\n",
+       seq_printf(seq, "lockless_truncate\t\t%llu\n",
                   stats->os_lockless_truncates);
        return 0;
 }