From: David Howells Date: Tue, 6 Apr 2010 21:35:09 +0000 (-0700) Subject: fs-cache: order the debugfs stats correctly X-Git-Tag: v2.6.34-rc4~31 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=cc4fc29e59c386919a7674e203be7822dc968dc0;p=safe%2Fjmp%2Flinux-2.6 fs-cache: order the debugfs stats correctly Order the debugfs statistics correctly. The values displayed through a seq_printf() statement should be in the same order as the names in the format string. In the 'Lookups' line, objects created ('crt=') and lookups timed out ('tmo=') have their values transposed. Signed-off-by: David Howells Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/fscache/stats.c b/fs/fscache/stats.c index 46435f3..4765190 100644 --- a/fs/fscache/stats.c +++ b/fs/fscache/stats.c @@ -165,8 +165,8 @@ static int fscache_stats_show(struct seq_file *m, void *v) atomic_read(&fscache_n_object_lookups), atomic_read(&fscache_n_object_lookups_negative), atomic_read(&fscache_n_object_lookups_positive), - atomic_read(&fscache_n_object_lookups_timed_out), - atomic_read(&fscache_n_object_created)); + atomic_read(&fscache_n_object_created), + atomic_read(&fscache_n_object_lookups_timed_out)); seq_printf(m, "Updates: n=%u nul=%u run=%u\n", atomic_read(&fscache_n_updates),