Whamcloud - gitweb
LU-5108 osc: Performance tune for LRU
[fs/lustre-release.git] / lustre / osc / lproc_osc.c
index 51bb482..dc372fd 100644 (file)
@@ -183,10 +183,12 @@ static int osc_cached_mb_seq_show(struct seq_file *m, void *v)
 
        rc = seq_printf(m,
                      "used_mb: %ld\n"
-                     "busy_cnt: %ld\n",
+                     "busy_cnt: %ld\n"
+                     "reclaim: "LPU64"\n",
                      (atomic_long_read(&cli->cl_lru_in_list) +
-                       atomic_long_read(&cli->cl_lru_busy)) >> shift,
-                     atomic_long_read(&cli->cl_lru_busy));
+                      atomic_long_read(&cli->cl_lru_busy)) >> shift,
+                     atomic_long_read(&cli->cl_lru_busy),
+                     cli->cl_lru_reclaim);
 
        return rc;
 }