diff options
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_stats.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_stats.c b/fs/xfs/linux-2.6/xfs_stats.c index 713e6a7505d0..1f0589a05eca 100644 --- a/fs/xfs/linux-2.6/xfs_stats.c +++ b/fs/xfs/linux-2.6/xfs_stats.c | |||
@@ -56,7 +56,7 @@ xfs_read_xfsstats( | |||
56 | }; | 56 | }; |
57 | 57 | ||
58 | /* Loop over all stats groups */ | 58 | /* Loop over all stats groups */ |
59 | for (i=j=len = 0; i < sizeof(xstats)/sizeof(struct xstats_entry); i++) { | 59 | for (i=j=len = 0; i < ARRAY_SIZE(xstats); i++) { |
60 | len += sprintf(buffer + len, xstats[i].desc); | 60 | len += sprintf(buffer + len, xstats[i].desc); |
61 | /* inner loop does each group */ | 61 | /* inner loop does each group */ |
62 | while (j < xstats[i].endpoint) { | 62 | while (j < xstats[i].endpoint) { |