Whamcloud - gitweb
LU-3338 llite: Limit reply buffer size
[fs/lustre-release.git] / lustre / llite / lproc_llite.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2013, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36 #define DEBUG_SUBSYSTEM S_LLITE
37
38 #include <linux/version.h>
39 #include <lustre_lite.h>
40 #include <lustre_param.h>
41 #include <lprocfs_status.h>
42 #include <obd_support.h>
43
44 #include "llite_internal.h"
45
46 struct proc_dir_entry *proc_lustre_fs_root;
47
48 #ifdef LPROCFS
49 /* /proc/lustre/llite mount point registration */
50 extern struct file_operations vvp_dump_pgcache_file_ops;
51 struct file_operations ll_rw_extents_stats_fops;
52 struct file_operations ll_rw_extents_stats_pp_fops;
53 struct file_operations ll_rw_offset_stats_fops;
54
55 static int ll_blksize_seq_show(struct seq_file *m, void *v)
56 {
57         struct super_block *sb = m->private;
58         struct obd_statfs osfs;
59         int rc;
60
61         LASSERT(sb != NULL);
62         rc = ll_statfs_internal(sb, &osfs,
63                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
64                                 OBD_STATFS_NODELAY);
65         if (!rc)
66                 rc = seq_printf(m, "%u\n", osfs.os_bsize);
67         return rc;
68 }
69 LPROC_SEQ_FOPS_RO(ll_blksize);
70
71 static int ll_kbytestotal_seq_show(struct seq_file *m, void *v)
72 {
73         struct super_block *sb = m->private;
74         struct obd_statfs osfs;
75         int rc;
76
77         LASSERT(sb != NULL);
78         rc = ll_statfs_internal(sb, &osfs,
79                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
80                                 OBD_STATFS_NODELAY);
81         if (!rc) {
82                 __u32 blk_size = osfs.os_bsize >> 10;
83                 __u64 result = osfs.os_blocks;
84
85                 while (blk_size >>= 1)
86                         result <<= 1;
87
88                 rc = seq_printf(m, LPU64"\n", result);
89         }
90         return rc;
91 }
92 LPROC_SEQ_FOPS_RO(ll_kbytestotal);
93
94 static int ll_kbytesfree_seq_show(struct seq_file *m, void *v)
95 {
96         struct super_block *sb = m->private;
97         struct obd_statfs osfs;
98         int rc;
99
100         LASSERT(sb != NULL);
101         rc = ll_statfs_internal(sb, &osfs,
102                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
103                                 OBD_STATFS_NODELAY);
104         if (!rc) {
105                 __u32 blk_size = osfs.os_bsize >> 10;
106                 __u64 result = osfs.os_bfree;
107
108                 while (blk_size >>= 1)
109                         result <<= 1;
110
111                 rc = seq_printf(m, LPU64"\n", result);
112         }
113         return rc;
114 }
115 LPROC_SEQ_FOPS_RO(ll_kbytesfree);
116
117 static int ll_kbytesavail_seq_show(struct seq_file *m, void *v)
118 {
119         struct super_block *sb = m->private;
120         struct obd_statfs osfs;
121         int rc;
122
123         LASSERT(sb != NULL);
124         rc = ll_statfs_internal(sb, &osfs,
125                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
126                                 OBD_STATFS_NODELAY);
127         if (!rc) {
128                 __u32 blk_size = osfs.os_bsize >> 10;
129                 __u64 result = osfs.os_bavail;
130
131                 while (blk_size >>= 1)
132                         result <<= 1;
133
134                 rc = seq_printf(m, LPU64"\n", result);
135         }
136         return rc;
137 }
138 LPROC_SEQ_FOPS_RO(ll_kbytesavail);
139
140 static int ll_filestotal_seq_show(struct seq_file *m, void *v)
141 {
142         struct super_block *sb = m->private;
143         struct obd_statfs osfs;
144         int rc;
145
146         LASSERT(sb != NULL);
147         rc = ll_statfs_internal(sb, &osfs,
148                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
149                                 OBD_STATFS_NODELAY);
150         if (!rc)
151                 rc = seq_printf(m, LPU64"\n", osfs.os_files);
152         return rc;
153 }
154 LPROC_SEQ_FOPS_RO(ll_filestotal);
155
156 static int ll_filesfree_seq_show(struct seq_file *m, void *v)
157 {
158         struct super_block *sb = m->private;
159         struct obd_statfs osfs;
160         int rc;
161
162         LASSERT(sb != NULL);
163         rc = ll_statfs_internal(sb, &osfs,
164                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
165                                 OBD_STATFS_NODELAY);
166         if (!rc)
167                 rc = seq_printf(m, LPU64"\n", osfs.os_ffree);
168         return rc;
169 }
170 LPROC_SEQ_FOPS_RO(ll_filesfree);
171
172 static int ll_client_type_seq_show(struct seq_file *m, void *v)
173 {
174         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
175         int rc;
176
177         LASSERT(sbi != NULL);
178
179         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
180                 rc = seq_printf(m, "remote client\n");
181         else
182                 rc = seq_printf(m, "local client\n");
183         return rc;
184 }
185 LPROC_SEQ_FOPS_RO(ll_client_type);
186
187 static int ll_fstype_seq_show(struct seq_file *m, void *v)
188 {
189         struct super_block *sb = m->private;
190
191         LASSERT(sb != NULL);
192         return seq_printf(m, "%s\n", sb->s_type->name);
193 }
194 LPROC_SEQ_FOPS_RO(ll_fstype);
195
196 static int ll_sb_uuid_seq_show(struct seq_file *m, void *v)
197 {
198         struct super_block *sb = m->private;
199
200         LASSERT(sb != NULL);
201         return seq_printf(m, "%s\n", ll_s2sbi(sb)->ll_sb_uuid.uuid);
202 }
203 LPROC_SEQ_FOPS_RO(ll_sb_uuid);
204
205 static int ll_xattr_cache_seq_show(struct seq_file *m, void *v)
206 {
207         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
208
209         return seq_printf(m, "%u\n", sbi->ll_xattr_cache_enabled);
210 }
211
212 static ssize_t ll_xattr_cache_seq_write(struct file *file, const char *buffer,
213                                         size_t count, loff_t *off)
214 {
215         struct seq_file *m = file->private_data;
216         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
217         int val, rc;
218
219         rc = lprocfs_write_helper(buffer, count, &val);
220         if (rc)
221                 return rc;
222
223         if (val != 0 && val != 1)
224                 return -ERANGE;
225
226         if (val == 1 && !(sbi->ll_flags & LL_SBI_XATTR_CACHE))
227                 return -ENOTSUPP;
228
229         sbi->ll_xattr_cache_enabled = val;
230
231         return count;
232 }
233 LPROC_SEQ_FOPS(ll_xattr_cache);
234
235 static int ll_site_stats_seq_show(struct seq_file *m, void *v)
236 {
237         struct super_block *sb = m->private;
238
239         /*
240          * See description of statistical counters in struct cl_site, and
241          * struct lu_site.
242          */
243         return cl_site_stats_print(lu2cl_site(ll_s2sbi(sb)->ll_site), m);
244 }
245 LPROC_SEQ_FOPS_RO(ll_site_stats);
246
247 static int ll_max_readahead_mb_seq_show(struct seq_file *m, void *v)
248 {
249         struct super_block *sb = m->private;
250         struct ll_sb_info *sbi = ll_s2sbi(sb);
251         long pages_number;
252         int mult;
253
254         spin_lock(&sbi->ll_lock);
255         pages_number = sbi->ll_ra_info.ra_max_pages;
256         spin_unlock(&sbi->ll_lock);
257
258         mult = 1 << (20 - PAGE_CACHE_SHIFT);
259         return lprocfs_seq_read_frac_helper(m, pages_number, mult);
260 }
261
262 static ssize_t
263 ll_max_readahead_mb_seq_write(struct file *file, const char *buffer,
264                               size_t count, loff_t *off)
265 {
266         struct seq_file *m = file->private_data;
267         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
268         int mult, rc, pages_number;
269
270         mult = 1 << (20 - PAGE_CACHE_SHIFT);
271         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
272         if (rc)
273                 return rc;
274
275         if (pages_number < 0 || pages_number > totalram_pages / 2) {
276                 /* 1/2 of RAM */
277                 CERROR("can't set file readahead more than %lu MB\n",
278                        totalram_pages >> (20 - PAGE_CACHE_SHIFT + 1));
279                 return -ERANGE;
280         }
281
282         spin_lock(&sbi->ll_lock);
283         sbi->ll_ra_info.ra_max_pages = pages_number;
284         spin_unlock(&sbi->ll_lock);
285         return count;
286 }
287 LPROC_SEQ_FOPS(ll_max_readahead_mb);
288
289 static int ll_max_readahead_per_file_mb_seq_show(struct seq_file *m, void *v)
290 {
291         struct super_block *sb = m->private;
292         struct ll_sb_info *sbi = ll_s2sbi(sb);
293         long pages_number;
294         int mult;
295
296         spin_lock(&sbi->ll_lock);
297         pages_number = sbi->ll_ra_info.ra_max_pages_per_file;
298         spin_unlock(&sbi->ll_lock);
299
300         mult = 1 << (20 - PAGE_CACHE_SHIFT);
301         return lprocfs_seq_read_frac_helper(m, pages_number, mult);
302 }
303
304 static ssize_t
305 ll_max_readahead_per_file_mb_seq_write(struct file *file, const char *buffer,
306                                        size_t count, loff_t *off)
307 {
308         struct seq_file *m = file->private_data;
309         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
310         int mult, rc, pages_number;
311
312         mult = 1 << (20 - PAGE_CACHE_SHIFT);
313         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
314         if (rc)
315                 return rc;
316
317         if (pages_number < 0 ||
318             pages_number > sbi->ll_ra_info.ra_max_pages) {
319                 CERROR("can't set file readahead more than"
320                        "max_read_ahead_mb %lu MB\n",
321                        sbi->ll_ra_info.ra_max_pages);
322                 return -ERANGE;
323         }
324
325         spin_lock(&sbi->ll_lock);
326         sbi->ll_ra_info.ra_max_pages_per_file = pages_number;
327         spin_unlock(&sbi->ll_lock);
328         return count;
329 }
330 LPROC_SEQ_FOPS(ll_max_readahead_per_file_mb);
331
332 static int ll_max_read_ahead_whole_mb_seq_show(struct seq_file *m, void *v)
333 {
334         struct super_block *sb = m->private;
335         struct ll_sb_info *sbi = ll_s2sbi(sb);
336         long pages_number;
337         int mult;
338
339         spin_lock(&sbi->ll_lock);
340         pages_number = sbi->ll_ra_info.ra_max_read_ahead_whole_pages;
341         spin_unlock(&sbi->ll_lock);
342
343         mult = 1 << (20 - PAGE_CACHE_SHIFT);
344         return lprocfs_seq_read_frac_helper(m, pages_number, mult);
345 }
346
347 static ssize_t
348 ll_max_read_ahead_whole_mb_seq_write(struct file *file, const char *buffer,
349                                      size_t count, loff_t *off)
350 {
351         struct seq_file *m = file->private_data;
352         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
353         int mult, rc, pages_number;
354
355         mult = 1 << (20 - PAGE_CACHE_SHIFT);
356         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
357         if (rc)
358                 return rc;
359
360         /* Cap this at the current max readahead window size, the readahead
361          * algorithm does this anyway so it's pointless to set it larger. */
362         if (pages_number < 0 ||
363             pages_number > sbi->ll_ra_info.ra_max_pages_per_file) {
364                 CERROR("can't set max_read_ahead_whole_mb more than "
365                        "max_read_ahead_per_file_mb: %lu\n",
366                         sbi->ll_ra_info.ra_max_pages_per_file >>
367                         (20 - PAGE_CACHE_SHIFT));
368                 return -ERANGE;
369         }
370
371         spin_lock(&sbi->ll_lock);
372         sbi->ll_ra_info.ra_max_read_ahead_whole_pages = pages_number;
373         spin_unlock(&sbi->ll_lock);
374         return count;
375 }
376 LPROC_SEQ_FOPS(ll_max_read_ahead_whole_mb);
377
378 static int ll_max_cached_mb_seq_show(struct seq_file *m, void *v)
379 {
380         struct super_block     *sb    = m->private;
381         struct ll_sb_info      *sbi   = ll_s2sbi(sb);
382         struct cl_client_cache *cache = &sbi->ll_cache;
383         int shift = 20 - PAGE_CACHE_SHIFT;
384         int max_cached_mb;
385         int unused_mb;
386
387         max_cached_mb = cache->ccc_lru_max >> shift;
388         unused_mb = cfs_atomic_read(&cache->ccc_lru_left) >> shift;
389         return seq_printf(m,
390                         "users: %d\n"
391                         "max_cached_mb: %d\n"
392                         "used_mb: %d\n"
393                         "unused_mb: %d\n"
394                         "reclaim_count: %u\n",
395                         cfs_atomic_read(&cache->ccc_users),
396                         max_cached_mb,
397                         max_cached_mb - unused_mb,
398                         unused_mb,
399                         cache->ccc_lru_shrinkers);
400 }
401
402 static ssize_t
403 ll_max_cached_mb_seq_write(struct file *file, const char *buffer,
404                            size_t count, loff_t *off)
405 {
406         struct seq_file *m = file->private_data;
407         struct super_block *sb = m->private;
408         struct ll_sb_info *sbi = ll_s2sbi(sb);
409         struct cl_client_cache *cache = &sbi->ll_cache;
410         struct lu_env *env;
411         int refcheck;
412         int mult, rc, pages_number;
413         int diff = 0;
414         int nrpages = 0;
415         ENTRY;
416
417         mult = 1 << (20 - PAGE_CACHE_SHIFT);
418         buffer = lprocfs_find_named_value(buffer, "max_cached_mb:", &count);
419         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
420         if (rc)
421                 RETURN(rc);
422
423         if (pages_number < 0 || pages_number > totalram_pages) {
424                 CERROR("%s: can't set max cache more than %lu MB\n",
425                        ll_get_fsname(sb, NULL, 0),
426                        totalram_pages >> (20 - PAGE_CACHE_SHIFT));
427                 RETURN(-ERANGE);
428         }
429
430         if (sbi->ll_dt_exp == NULL) /* being initialized */
431                 GOTO(out, rc = 0);
432
433         spin_lock(&sbi->ll_lock);
434         diff = pages_number - cache->ccc_lru_max;
435         spin_unlock(&sbi->ll_lock);
436
437         /* easy - add more LRU slots. */
438         if (diff >= 0) {
439                 cfs_atomic_add(diff, &cache->ccc_lru_left);
440                 GOTO(out, rc = 0);
441         }
442
443         env = cl_env_get(&refcheck);
444         if (IS_ERR(env))
445                 RETURN(rc);
446
447         diff = -diff;
448         while (diff > 0) {
449                 int tmp;
450
451                 /* reduce LRU budget from free slots. */
452                 do {
453                         int ov, nv;
454
455                         ov = cfs_atomic_read(&cache->ccc_lru_left);
456                         if (ov == 0)
457                                 break;
458
459                         nv = ov > diff ? ov - diff : 0;
460                         rc = cfs_atomic_cmpxchg(&cache->ccc_lru_left, ov, nv);
461                         if (likely(ov == rc)) {
462                                 diff -= ov - nv;
463                                 nrpages += ov - nv;
464                                 break;
465                         }
466                 } while (1);
467
468                 if (diff <= 0)
469                         break;
470
471                 /* difficult - have to ask OSCs to drop LRU slots. */
472                 tmp = diff << 1;
473                 rc = obd_set_info_async(env, sbi->ll_dt_exp,
474                                 sizeof(KEY_CACHE_LRU_SHRINK),
475                                 KEY_CACHE_LRU_SHRINK,
476                                 sizeof(tmp), &tmp, NULL);
477                 if (rc < 0)
478                         break;
479         }
480         cl_env_put(env, &refcheck);
481
482 out:
483         if (rc >= 0) {
484                 spin_lock(&sbi->ll_lock);
485                 cache->ccc_lru_max = pages_number;
486                 spin_unlock(&sbi->ll_lock);
487                 rc = count;
488         } else {
489                 cfs_atomic_add(nrpages, &cache->ccc_lru_left);
490         }
491         return rc;
492 }
493 LPROC_SEQ_FOPS(ll_max_cached_mb);
494
495 static int ll_checksum_seq_show(struct seq_file *m, void *v)
496 {
497         struct super_block *sb = m->private;
498         struct ll_sb_info *sbi = ll_s2sbi(sb);
499
500         return seq_printf(m, "%u\n", (sbi->ll_flags & LL_SBI_CHECKSUM) ? 1 : 0);
501 }
502
503 static ssize_t ll_checksum_seq_write(struct file *file, const char *buffer,
504                                      size_t count, loff_t *off)
505 {
506         struct seq_file *m = file->private_data;
507         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
508         int val, rc;
509
510         if (!sbi->ll_dt_exp)
511                 /* Not set up yet */
512                 return -EAGAIN;
513
514         rc = lprocfs_write_helper(buffer, count, &val);
515         if (rc)
516                 return rc;
517         if (val)
518                 sbi->ll_flags |= LL_SBI_CHECKSUM;
519         else
520                 sbi->ll_flags &= ~LL_SBI_CHECKSUM;
521
522         rc = obd_set_info_async(NULL, sbi->ll_dt_exp, sizeof(KEY_CHECKSUM),
523                                 KEY_CHECKSUM, sizeof(val), &val, NULL);
524         if (rc)
525                 CWARN("Failed to set OSC checksum flags: %d\n", rc);
526
527         return count;
528 }
529 LPROC_SEQ_FOPS(ll_checksum);
530
531 static int ll_max_rw_chunk_seq_show(struct seq_file *m, void *v)
532 {
533         struct super_block *sb = m->private;
534
535         return seq_printf(m, "%lu\n", ll_s2sbi(sb)->ll_max_rw_chunk);
536 }
537
538 static ssize_t ll_max_rw_chunk_seq_write(struct file *file, const char *buffer,
539                                          size_t count, loff_t *off)
540 {
541         struct seq_file *m = file->private_data;
542         struct super_block *sb = m->private;
543         int rc, val;
544
545         rc = lprocfs_write_helper(buffer, count, &val);
546         if (rc)
547                 return rc;
548         ll_s2sbi(sb)->ll_max_rw_chunk = val;
549         return count;
550 }
551 LPROC_SEQ_FOPS(ll_max_rw_chunk);
552
553 static int ll_rd_track_id(struct seq_file *m, enum stats_track_type type)
554 {
555         struct super_block *sb = m->private;
556
557         if (ll_s2sbi(sb)->ll_stats_track_type == type) {
558                 return seq_printf(m, "%d\n",
559                                   ll_s2sbi(sb)->ll_stats_track_id);
560         } else if (ll_s2sbi(sb)->ll_stats_track_type == STATS_TRACK_ALL) {
561                 return seq_printf(m, "0 (all)\n");
562         } else {
563                 return seq_printf(m, "untracked\n");
564         }
565 }
566
567 static int ll_wr_track_id(const char *buffer, unsigned long count, void *data,
568                           enum stats_track_type type)
569 {
570         struct super_block *sb = data;
571         int rc, pid;
572
573         rc = lprocfs_write_helper(buffer, count, &pid);
574         if (rc)
575                 return rc;
576         ll_s2sbi(sb)->ll_stats_track_id = pid;
577         if (pid == 0)
578                 ll_s2sbi(sb)->ll_stats_track_type = STATS_TRACK_ALL;
579         else
580                 ll_s2sbi(sb)->ll_stats_track_type = type;
581         lprocfs_clear_stats(ll_s2sbi(sb)->ll_stats);
582         return count;
583 }
584
585 static int ll_track_pid_seq_show(struct seq_file *m, void *v)
586 {
587         return ll_rd_track_id(m, STATS_TRACK_PID);
588 }
589
590 static ssize_t ll_track_pid_seq_write(struct file *file, const char *buffer,
591                                       size_t count, loff_t *off)
592 {
593         struct seq_file *seq = file->private_data;
594         return ll_wr_track_id(buffer, count, seq->private, STATS_TRACK_PID);
595 }
596 LPROC_SEQ_FOPS(ll_track_pid);
597
598 static int ll_track_ppid_seq_show(struct seq_file *m, void *v)
599 {
600         return ll_rd_track_id(m, STATS_TRACK_PPID);
601 }
602
603 static ssize_t ll_track_ppid_seq_write(struct file *file, const char *buffer,
604                                        size_t count, loff_t *off)
605 {
606         struct seq_file *seq = file->private_data;
607         return ll_wr_track_id(buffer, count, seq->private, STATS_TRACK_PPID);
608 }
609 LPROC_SEQ_FOPS(ll_track_ppid);
610
611 static int ll_track_gid_seq_show(struct seq_file *m, void *v)
612 {
613         return ll_rd_track_id(m, STATS_TRACK_GID);
614 }
615
616 static ssize_t ll_track_gid_seq_write(struct file *file, const char *buffer,
617                                       size_t count, loff_t *off)
618 {
619         struct seq_file *seq = file->private_data;
620         return ll_wr_track_id(buffer, count, seq->private, STATS_TRACK_GID);
621 }
622 LPROC_SEQ_FOPS(ll_track_gid);
623
624 static int ll_statahead_max_seq_show(struct seq_file *m, void *v)
625 {
626         struct super_block *sb = m->private;
627         struct ll_sb_info *sbi = ll_s2sbi(sb);
628
629         return seq_printf(m, "%u\n", sbi->ll_sa_max);
630 }
631
632 static ssize_t ll_statahead_max_seq_write(struct file *file, const char *buffer,
633                                           size_t count, loff_t *off)
634 {
635         struct seq_file *m = file->private_data;
636         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
637         int val, rc;
638
639         rc = lprocfs_write_helper(buffer, count, &val);
640         if (rc)
641                 return rc;
642
643         if (val >= 0 && val <= LL_SA_RPC_MAX)
644                 sbi->ll_sa_max = val;
645         else
646                 CERROR("Bad statahead_max value %d. Valid values are in the "
647                        "range [0, %d]\n", val, LL_SA_RPC_MAX);
648
649         return count;
650 }
651 LPROC_SEQ_FOPS(ll_statahead_max);
652
653 static int ll_statahead_agl_seq_show(struct seq_file *m, void *v)
654 {
655         struct super_block *sb = m->private;
656         struct ll_sb_info *sbi = ll_s2sbi(sb);
657
658         return seq_printf(m, "%u\n",
659                           sbi->ll_flags & LL_SBI_AGL_ENABLED ? 1 : 0);
660 }
661
662 static ssize_t ll_statahead_agl_seq_write(struct file *file, const char *buffer,
663                                           size_t count, loff_t *off)
664 {
665         struct seq_file *m = file->private_data;
666         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
667         int val, rc;
668
669         rc = lprocfs_write_helper(buffer, count, &val);
670         if (rc)
671                 return rc;
672
673         if (val)
674                 sbi->ll_flags |= LL_SBI_AGL_ENABLED;
675         else
676                 sbi->ll_flags &= ~LL_SBI_AGL_ENABLED;
677
678         return count;
679 }
680 LPROC_SEQ_FOPS(ll_statahead_agl);
681
682 static int ll_statahead_stats_seq_show(struct seq_file *m, void *v)
683 {
684         struct super_block *sb = m->private;
685         struct ll_sb_info *sbi = ll_s2sbi(sb);
686
687         return seq_printf(m,
688                         "statahead total: %u\n"
689                         "statahead wrong: %u\n"
690                         "agl total: %u\n",
691                         atomic_read(&sbi->ll_sa_total),
692                         atomic_read(&sbi->ll_sa_wrong),
693                         atomic_read(&sbi->ll_agl_total));
694 }
695 LPROC_SEQ_FOPS_RO(ll_statahead_stats);
696
697 static int ll_lazystatfs_seq_show(struct seq_file *m, void *v)
698 {
699         struct super_block *sb = m->private;
700         struct ll_sb_info *sbi = ll_s2sbi(sb);
701
702         return seq_printf(m, "%u\n",
703                           (sbi->ll_flags & LL_SBI_LAZYSTATFS) ? 1 : 0);
704 }
705
706 static ssize_t ll_lazystatfs_seq_write(struct file *file, const char *buffer,
707                                         size_t count, loff_t *off)
708 {
709         struct seq_file *m = file->private_data;
710         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)m->private);
711         int val, rc;
712
713         rc = lprocfs_write_helper(buffer, count, &val);
714         if (rc)
715                 return rc;
716
717         if (val)
718                 sbi->ll_flags |= LL_SBI_LAZYSTATFS;
719         else
720                 sbi->ll_flags &= ~LL_SBI_LAZYSTATFS;
721
722         return count;
723 }
724 LPROC_SEQ_FOPS(ll_lazystatfs);
725
726 static int ll_max_easize_seq_show(struct seq_file *m, void *v)
727 {
728         struct super_block *sb = m->private;
729         struct ll_sb_info *sbi = ll_s2sbi(sb);
730         unsigned int ealen;
731         int rc;
732
733         rc = ll_get_max_mdsize(sbi, &ealen);
734         if (rc)
735                 return rc;
736
737         return seq_printf(m, "%u\n", ealen);
738 }
739 LPROC_SEQ_FOPS_RO(ll_max_easize);
740
741 static int ll_defult_easize_seq_show(struct seq_file *m, void *v)
742 {
743         struct super_block *sb = m->private;
744         struct ll_sb_info *sbi = ll_s2sbi(sb);
745         unsigned int ealen;
746         int rc;
747
748         rc = ll_get_default_mdsize(sbi, &ealen);
749         if (rc)
750                 return rc;
751
752         return seq_printf(m, "%u\n", ealen);
753 }
754 LPROC_SEQ_FOPS_RO(ll_defult_easize);
755
756 static int ll_max_cookiesize_seq_show(struct seq_file *m, void *v)
757 {
758         struct super_block *sb = m->private;
759         struct ll_sb_info *sbi = ll_s2sbi(sb);
760         unsigned int cookielen;
761         int rc;
762
763         rc = ll_get_max_cookiesize(sbi, &cookielen);
764         if (rc)
765                 return rc;
766
767         return seq_printf(m, "%u\n", cookielen);
768 }
769 LPROC_SEQ_FOPS_RO(ll_max_cookiesize);
770
771 static int ll_defult_cookiesize_seq_show(struct seq_file *m, void *v)
772 {
773         struct super_block *sb = m->private;
774         struct ll_sb_info *sbi = ll_s2sbi(sb);
775         unsigned int cookielen;
776         int rc;
777
778         rc = ll_get_default_cookiesize(sbi, &cookielen);
779         if (rc)
780                 return rc;
781
782         return seq_printf(m, "%u\n", cookielen);
783 }
784 LPROC_SEQ_FOPS_RO(ll_defult_cookiesize);
785
786 static int ll_sbi_flags_seq_show(struct seq_file *m, void *v)
787 {
788         const char *str[] = LL_SBI_FLAGS;
789         struct super_block *sb = m->private;
790         int flags = ll_s2sbi(sb)->ll_flags;
791         int i = 0;
792
793         while (flags != 0) {
794                 if (ARRAY_SIZE(str) <= i) {
795                         CERROR("%s: Revise array LL_SBI_FLAGS to match sbi "
796                                 "flags please.\n", ll_get_fsname(sb, NULL, 0));
797                         return -EINVAL;
798                 }
799
800                 if (flags & 0x1)
801                         seq_printf(m, "%s ", str[i]);
802                 flags >>= 1;
803                 ++i;
804         }
805         seq_printf(m, "\b\n");
806         return 0;
807 }
808 LPROC_SEQ_FOPS_RO(ll_sbi_flags);
809
810 static int ll_unstable_stats_seq_show(struct seq_file *m, void *v)
811 {
812         struct super_block      *sb    = m->private;
813         struct ll_sb_info       *sbi   = ll_s2sbi(sb);
814         struct cl_client_cache  *cache = &sbi->ll_cache;
815         int pages, mb;
816
817         pages = cfs_atomic_read(&cache->ccc_unstable_nr);
818         mb    = (pages * PAGE_CACHE_SIZE) >> 20;
819
820         return seq_printf(m, "unstable_pages: %8d\n"
821                                 "unstable_mb:    %8d\n", pages, mb);
822 }
823 LPROC_SEQ_FOPS_RO(ll_unstable_stats);
824
825 struct lprocfs_seq_vars lprocfs_llite_obd_vars[] = {
826         { .name =       "uuid",
827           .fops =       &ll_sb_uuid_fops                        },
828         { .name =       "fstype",
829           .fops =       &ll_fstype_fops                         },
830         { .name =       "site",
831           .fops =       &ll_site_stats_fops                     },
832         { .name =       "blocksize",
833           .fops =       &ll_blksize_fops                        },
834         { .name =       "kbytestotal",
835           .fops =       &ll_kbytestotal_fops                    },
836         { .name =       "kbytesfree",
837           .fops =       &ll_kbytesfree_fops                     },
838         { .name =       "kbytesavail",
839           .fops =       &ll_kbytesavail_fops                    },
840         { .name =       "filestotal",
841           .fops =       &ll_filestotal_fops                     },
842         { .name =       "filesfree",
843           .fops =       &ll_filesfree_fops                      },
844         { .name =       "client_type",
845           .fops =       &ll_client_type_fops                    },
846         { .name =       "max_read_ahead_mb",
847           .fops =       &ll_max_readahead_mb_fops               },
848         { .name =       "max_read_ahead_per_file_mb",
849           .fops =       &ll_max_readahead_per_file_mb_fops      },
850         { .name =       "max_read_ahead_whole_mb",
851           .fops =       &ll_max_read_ahead_whole_mb_fops        },
852         { .name =       "max_cached_mb",
853           .fops =       &ll_max_cached_mb_fops                  },
854         { .name =       "checksum_pages",
855           .fops =       &ll_checksum_fops                       },
856         { .name =       "max_rw_chunk",
857           .fops =       &ll_max_rw_chunk_fops                   },
858         { .name =       "stats_track_pid",
859           .fops =       &ll_track_pid_fops                      },
860         { .name =       "stats_track_ppid",
861           .fops =       &ll_track_ppid_fops                     },
862         { .name =       "stats_track_gid",
863           .fops =       &ll_track_gid_fops                      },
864         { .name =       "statahead_max",
865           .fops =       &ll_statahead_max_fops                  },
866         { .name =       "statahead_agl",
867           .fops =       &ll_statahead_agl_fops                  },
868         { .name =       "statahead_stats",
869           .fops =       &ll_statahead_stats_fops                },
870         { .name =       "lazystatfs",
871           .fops =       &ll_lazystatfs_fops                     },
872         { .name =       "max_easize",
873           .fops =       &ll_max_easize_fops                     },
874         { .name =       "default_easize",
875           .fops =       &ll_defult_easize_fops                  },
876         { .name =       "max_cookiesize",
877           .fops =       &ll_max_cookiesize_fops                 },
878         { .name =       "default_cookiesize",
879           .fops =       &ll_defult_cookiesize_fops              },
880         { .name =       "sbi_flags",
881           .fops =       &ll_sbi_flags_fops                      },
882         { .name =       "xattr_cache",
883           .fops =       &ll_xattr_cache_fops                    },
884         { .name =       "unstable_stats",
885           .fops =       &ll_unstable_stats_fops                 },
886         { 0 }
887 };
888
889 #define MAX_STRING_SIZE 128
890
891 struct llite_file_opcode {
892         __u32       opcode;
893         __u32       type;
894         const char *opname;
895 } llite_opcode_table[LPROC_LL_FILE_OPCODES] = {
896         /* file operation */
897         { LPROC_LL_DIRTY_HITS,     LPROCFS_TYPE_REGS, "dirty_pages_hits" },
898         { LPROC_LL_DIRTY_MISSES,   LPROCFS_TYPE_REGS, "dirty_pages_misses" },
899         { LPROC_LL_READ_BYTES,     LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
900                                    "read_bytes" },
901         { LPROC_LL_WRITE_BYTES,    LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
902                                    "write_bytes" },
903         { LPROC_LL_BRW_READ,       LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_PAGES,
904                                    "brw_read" },
905         { LPROC_LL_BRW_WRITE,      LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_PAGES,
906                                    "brw_write" },
907         { LPROC_LL_OSC_READ,       LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
908                                    "osc_read" },
909         { LPROC_LL_OSC_WRITE,      LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
910                                    "osc_write" },
911         { LPROC_LL_IOCTL,          LPROCFS_TYPE_REGS, "ioctl" },
912         { LPROC_LL_OPEN,           LPROCFS_TYPE_REGS, "open" },
913         { LPROC_LL_RELEASE,        LPROCFS_TYPE_REGS, "close" },
914         { LPROC_LL_MAP,            LPROCFS_TYPE_REGS, "mmap" },
915         { LPROC_LL_LLSEEK,         LPROCFS_TYPE_REGS, "seek" },
916         { LPROC_LL_FSYNC,          LPROCFS_TYPE_REGS, "fsync" },
917         { LPROC_LL_READDIR,        LPROCFS_TYPE_REGS, "readdir" },
918         /* inode operation */
919         { LPROC_LL_SETATTR,        LPROCFS_TYPE_REGS, "setattr" },
920         { LPROC_LL_TRUNC,          LPROCFS_TYPE_REGS, "truncate" },
921         { LPROC_LL_FLOCK,          LPROCFS_TYPE_REGS, "flock" },
922         { LPROC_LL_GETATTR,        LPROCFS_TYPE_REGS, "getattr" },
923         /* dir inode operation */
924         { LPROC_LL_CREATE,         LPROCFS_TYPE_REGS, "create" },
925         { LPROC_LL_LINK,           LPROCFS_TYPE_REGS, "link" },
926         { LPROC_LL_UNLINK,         LPROCFS_TYPE_REGS, "unlink" },
927         { LPROC_LL_SYMLINK,        LPROCFS_TYPE_REGS, "symlink" },
928         { LPROC_LL_MKDIR,          LPROCFS_TYPE_REGS, "mkdir" },
929         { LPROC_LL_RMDIR,          LPROCFS_TYPE_REGS, "rmdir" },
930         { LPROC_LL_MKNOD,          LPROCFS_TYPE_REGS, "mknod" },
931         { LPROC_LL_RENAME,         LPROCFS_TYPE_REGS, "rename" },
932         /* special inode operation */
933         { LPROC_LL_STAFS,          LPROCFS_TYPE_REGS, "statfs" },
934         { LPROC_LL_ALLOC_INODE,    LPROCFS_TYPE_REGS, "alloc_inode" },
935         { LPROC_LL_SETXATTR,       LPROCFS_TYPE_REGS, "setxattr" },
936         { LPROC_LL_GETXATTR,       LPROCFS_TYPE_REGS, "getxattr" },
937         { LPROC_LL_GETXATTR_HITS,  LPROCFS_TYPE_REGS, "getxattr_hits" },
938         { LPROC_LL_LISTXATTR,      LPROCFS_TYPE_REGS, "listxattr" },
939         { LPROC_LL_REMOVEXATTR,    LPROCFS_TYPE_REGS, "removexattr" },
940         { LPROC_LL_INODE_PERM,     LPROCFS_TYPE_REGS, "inode_permission" },
941 };
942
943 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count)
944 {
945         if (!sbi->ll_stats)
946                 return;
947         if (sbi->ll_stats_track_type == STATS_TRACK_ALL)
948                 lprocfs_counter_add(sbi->ll_stats, op, count);
949         else if (sbi->ll_stats_track_type == STATS_TRACK_PID &&
950                  sbi->ll_stats_track_id == current->pid)
951                 lprocfs_counter_add(sbi->ll_stats, op, count);
952         else if (sbi->ll_stats_track_type == STATS_TRACK_PPID &&
953                  sbi->ll_stats_track_id == current->parent->pid)
954                 lprocfs_counter_add(sbi->ll_stats, op, count);
955         else if (sbi->ll_stats_track_type == STATS_TRACK_GID &&
956                  sbi->ll_stats_track_id == current_gid())
957                 lprocfs_counter_add(sbi->ll_stats, op, count);
958 }
959 EXPORT_SYMBOL(ll_stats_ops_tally);
960
961 static const char *ra_stat_string[] = {
962         [RA_STAT_HIT] = "hits",
963         [RA_STAT_MISS] = "misses",
964         [RA_STAT_DISTANT_READPAGE] = "readpage not consecutive",
965         [RA_STAT_MISS_IN_WINDOW] = "miss inside window",
966         [RA_STAT_FAILED_GRAB_PAGE] = "failed grab_cache_page",
967         [RA_STAT_FAILED_MATCH] = "failed lock match",
968         [RA_STAT_DISCARDED] = "read but discarded",
969         [RA_STAT_ZERO_LEN] = "zero length file",
970         [RA_STAT_ZERO_WINDOW] = "zero size window",
971         [RA_STAT_EOF] = "read-ahead to EOF",
972         [RA_STAT_MAX_IN_FLIGHT] = "hit max r-a issue",
973         [RA_STAT_WRONG_GRAB_PAGE] = "wrong page from grab_cache_page",
974         [RA_STAT_FAILED_REACH_END] = "failed to reach end"
975 };
976
977 LPROC_SEQ_FOPS_RO_TYPE(llite, name);
978 LPROC_SEQ_FOPS_RO_TYPE(llite, uuid);
979
980 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
981                                 struct super_block *sb, char *osc, char *mdc)
982 {
983         struct lprocfs_seq_vars lvars[2];
984         struct lustre_sb_info *lsi = s2lsi(sb);
985         struct ll_sb_info *sbi = ll_s2sbi(sb);
986         struct obd_device *obd;
987         struct proc_dir_entry *dir;
988         char name[MAX_STRING_SIZE + 1], *ptr;
989         int err, id, len, rc;
990         ENTRY;
991
992         memset(lvars, 0, sizeof(lvars));
993
994         name[MAX_STRING_SIZE] = '\0';
995         lvars[0].name = name;
996
997         LASSERT(sbi != NULL);
998         LASSERT(mdc != NULL);
999         LASSERT(osc != NULL);
1000
1001         /* Get fsname */
1002         len = strlen(lsi->lsi_lmd->lmd_profile);
1003         ptr = strrchr(lsi->lsi_lmd->lmd_profile, '-');
1004         if (ptr && (strcmp(ptr, "-client") == 0))
1005                 len -= 7;
1006
1007         /* Mount info */
1008         snprintf(name, MAX_STRING_SIZE, "%.*s-%p", len,
1009                  lsi->lsi_lmd->lmd_profile, sb);
1010
1011         sbi->ll_proc_root = lprocfs_seq_register(name, parent, NULL, NULL);
1012         if (IS_ERR(sbi->ll_proc_root)) {
1013                 err = PTR_ERR(sbi->ll_proc_root);
1014                 sbi->ll_proc_root = NULL;
1015                 RETURN(err);
1016         }
1017
1018         rc = lprocfs_seq_create(sbi->ll_proc_root, "dump_page_cache", 0444,
1019                                 &vvp_dump_pgcache_file_ops, sbi);
1020         if (rc)
1021                 CWARN("Error adding the dump_page_cache file\n");
1022
1023         rc = lprocfs_seq_create(sbi->ll_proc_root, "extents_stats", 0644,
1024                                 &ll_rw_extents_stats_fops, sbi);
1025         if (rc)
1026                 CWARN("Error adding the extent_stats file\n");
1027
1028         rc = lprocfs_seq_create(sbi->ll_proc_root, "extents_stats_per_process",
1029                                 0644, &ll_rw_extents_stats_pp_fops, sbi);
1030         if (rc)
1031                 CWARN("Error adding the extents_stats_per_process file\n");
1032
1033         rc = lprocfs_seq_create(sbi->ll_proc_root, "offset_stats", 0644,
1034                                 &ll_rw_offset_stats_fops, sbi);
1035         if (rc)
1036                 CWARN("Error adding the offset_stats file\n");
1037
1038         /* File operations stats */
1039         sbi->ll_stats = lprocfs_alloc_stats(LPROC_LL_FILE_OPCODES,
1040                                             LPROCFS_STATS_FLAG_NONE);
1041         if (sbi->ll_stats == NULL)
1042                 GOTO(out, err = -ENOMEM);
1043         /* do counter init */
1044         for (id = 0; id < LPROC_LL_FILE_OPCODES; id++) {
1045                 __u32 type = llite_opcode_table[id].type;
1046                 void *ptr = NULL;
1047                 if (type & LPROCFS_TYPE_REGS)
1048                         ptr = "regs";
1049                 else if (type & LPROCFS_TYPE_BYTES)
1050                         ptr = "bytes";
1051                 else if (type & LPROCFS_TYPE_PAGES)
1052                         ptr = "pages";
1053                 lprocfs_counter_init(sbi->ll_stats,
1054                                      llite_opcode_table[id].opcode,
1055                                      (type & LPROCFS_CNTR_AVGMINMAX),
1056                                      llite_opcode_table[id].opname, ptr);
1057         }
1058         err = lprocfs_register_stats(sbi->ll_proc_root, "stats", sbi->ll_stats);
1059         if (err)
1060                 GOTO(out, err);
1061
1062         sbi->ll_ra_stats = lprocfs_alloc_stats(ARRAY_SIZE(ra_stat_string),
1063                                                LPROCFS_STATS_FLAG_NONE);
1064         if (sbi->ll_ra_stats == NULL)
1065                 GOTO(out, err = -ENOMEM);
1066
1067         for (id = 0; id < ARRAY_SIZE(ra_stat_string); id++)
1068                 lprocfs_counter_init(sbi->ll_ra_stats, id, 0,
1069                                      ra_stat_string[id], "pages");
1070         err = lprocfs_register_stats(sbi->ll_proc_root, "read_ahead_stats",
1071                                      sbi->ll_ra_stats);
1072         if (err)
1073                 GOTO(out, err);
1074
1075
1076         err = lprocfs_seq_add_vars(sbi->ll_proc_root, lprocfs_llite_obd_vars, sb);
1077         if (err)
1078                 GOTO(out, err);
1079
1080         /* MDC info */
1081         obd = class_name2obd(mdc);
1082
1083         LASSERT(obd != NULL);
1084         LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
1085         LASSERT(obd->obd_type->typ_name != NULL);
1086
1087         dir = proc_mkdir(obd->obd_type->typ_name, sbi->ll_proc_root);
1088         if (dir == NULL)
1089                 GOTO(out, err = -ENOMEM);
1090
1091         snprintf(name, MAX_STRING_SIZE, "common_name");
1092         lvars[0].fops = &llite_name_fops;
1093         err = lprocfs_seq_add_vars(dir, lvars, obd);
1094         if (err)
1095                 GOTO(out, err);
1096
1097         snprintf(name, MAX_STRING_SIZE, "uuid");
1098         lvars[0].fops = &llite_uuid_fops;
1099         err = lprocfs_seq_add_vars(dir, lvars, obd);
1100         if (err)
1101                 GOTO(out, err);
1102
1103         /* OSC */
1104         obd = class_name2obd(osc);
1105
1106         LASSERT(obd != NULL);
1107         LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
1108         LASSERT(obd->obd_type->typ_name != NULL);
1109
1110         dir = proc_mkdir(obd->obd_type->typ_name, sbi->ll_proc_root);
1111         if (dir == NULL)
1112                 GOTO(out, err = -ENOMEM);
1113
1114         snprintf(name, MAX_STRING_SIZE, "common_name");
1115         lvars[0].fops = &llite_name_fops;
1116         err = lprocfs_seq_add_vars(dir, lvars, obd);
1117         if (err)
1118                 GOTO(out, err);
1119
1120         snprintf(name, MAX_STRING_SIZE, "uuid");
1121         lvars[0].fops = &llite_uuid_fops;
1122         err = lprocfs_seq_add_vars(dir, lvars, obd);
1123 out:
1124         if (err) {
1125                 lprocfs_remove(&sbi->ll_proc_root);
1126                 lprocfs_free_stats(&sbi->ll_ra_stats);
1127                 lprocfs_free_stats(&sbi->ll_stats);
1128         }
1129         RETURN(err);
1130 }
1131
1132 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi)
1133 {
1134         if (sbi->ll_proc_root) {
1135                 lprocfs_remove(&sbi->ll_proc_root);
1136                 lprocfs_free_stats(&sbi->ll_ra_stats);
1137                 lprocfs_free_stats(&sbi->ll_stats);
1138         }
1139 }
1140 #undef MAX_STRING_SIZE
1141
1142 #define pct(a,b) (b ? a * 100 / b : 0)
1143
1144 static void ll_display_extents_info(struct ll_rw_extents_info *io_extents,
1145                                    struct seq_file *seq, int which)
1146 {
1147         unsigned long read_tot = 0, write_tot = 0, read_cum, write_cum;
1148         unsigned long start, end, r, w;
1149         char *unitp = "KMGTPEZY";
1150         int i, units = 10;
1151         struct per_process_info *pp_info = &io_extents->pp_extents[which];
1152
1153         read_cum = 0;
1154         write_cum = 0;
1155         start = 0;
1156
1157         for(i = 0; i < LL_HIST_MAX; i++) {
1158                 read_tot += pp_info->pp_r_hist.oh_buckets[i];
1159                 write_tot += pp_info->pp_w_hist.oh_buckets[i];
1160         }
1161
1162         for(i = 0; i < LL_HIST_MAX; i++) {
1163                 r = pp_info->pp_r_hist.oh_buckets[i];
1164                 w = pp_info->pp_w_hist.oh_buckets[i];
1165                 read_cum += r;
1166                 write_cum += w;
1167                 end = 1 << (i + LL_HIST_START - units);
1168                 seq_printf(seq, "%4lu%c - %4lu%c%c: %14lu %4lu %4lu  | "
1169                            "%14lu %4lu %4lu\n", start, *unitp, end, *unitp,
1170                            (i == LL_HIST_MAX - 1) ? '+' : ' ',
1171                            r, pct(r, read_tot), pct(read_cum, read_tot),
1172                            w, pct(w, write_tot), pct(write_cum, write_tot));
1173                 start = end;
1174                 if (start == 1<<10) {
1175                         start = 1;
1176                         units += 10;
1177                         unitp++;
1178                 }
1179                 if (read_cum == read_tot && write_cum == write_tot)
1180                         break;
1181         }
1182 }
1183
1184 static int ll_rw_extents_stats_pp_seq_show(struct seq_file *seq, void *v)
1185 {
1186         struct timeval now;
1187         struct ll_sb_info *sbi = seq->private;
1188         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1189         int k;
1190
1191         do_gettimeofday(&now);
1192
1193         if (!sbi->ll_rw_stats_on) {
1194                 seq_printf(seq, "disabled\n"
1195                                 "write anything in this file to activate, "
1196                                 "then 0 or \"[D/d]isabled\" to deactivate\n");
1197                 return 0;
1198         }
1199         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
1200                    now.tv_sec, now.tv_usec);
1201         seq_printf(seq, "%15s %19s       | %20s\n", " ", "read", "write");
1202         seq_printf(seq, "%13s   %14s %4s %4s  | %14s %4s %4s\n",
1203                    "extents", "calls", "%", "cum%",
1204                    "calls", "%", "cum%");
1205         spin_lock(&sbi->ll_pp_extent_lock);
1206         for (k = 0; k < LL_PROCESS_HIST_MAX; k++) {
1207                 if (io_extents->pp_extents[k].pid != 0) {
1208                         seq_printf(seq, "\nPID: %d\n",
1209                                    io_extents->pp_extents[k].pid);
1210                         ll_display_extents_info(io_extents, seq, k);
1211                 }
1212         }
1213         spin_unlock(&sbi->ll_pp_extent_lock);
1214         return 0;
1215 }
1216
1217 static ssize_t ll_rw_extents_stats_pp_seq_write(struct file *file,
1218                                                 const char *buf, size_t len,
1219                                                 loff_t *off)
1220 {
1221         struct seq_file *seq = file->private_data;
1222         struct ll_sb_info *sbi = seq->private;
1223         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1224         int i;
1225         int value = 1, rc = 0;
1226
1227         rc = lprocfs_write_helper(buf, len, &value);
1228         if (rc < 0 && (strcmp(buf, "disabled") == 0 ||
1229                        strcmp(buf, "Disabled") == 0))
1230                 value = 0;
1231
1232         if (value == 0)
1233                 sbi->ll_rw_stats_on = 0;
1234         else
1235                 sbi->ll_rw_stats_on = 1;
1236
1237         spin_lock(&sbi->ll_pp_extent_lock);
1238         for (i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1239                 io_extents->pp_extents[i].pid = 0;
1240                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_r_hist);
1241                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_w_hist);
1242         }
1243         spin_unlock(&sbi->ll_pp_extent_lock);
1244         return len;
1245 }
1246
1247 LPROC_SEQ_FOPS(ll_rw_extents_stats_pp);
1248
1249 static int ll_rw_extents_stats_seq_show(struct seq_file *seq, void *v)
1250 {
1251         struct timeval now;
1252         struct ll_sb_info *sbi = seq->private;
1253         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1254
1255         do_gettimeofday(&now);
1256
1257         if (!sbi->ll_rw_stats_on) {
1258                 seq_printf(seq, "disabled\n"
1259                                 "write anything in this file to activate, "
1260                                 "then 0 or \"[D/d]isabled\" to deactivate\n");
1261                 return 0;
1262         }
1263         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
1264                    now.tv_sec, now.tv_usec);
1265
1266         seq_printf(seq, "%15s %19s       | %20s\n", " ", "read", "write");
1267         seq_printf(seq, "%13s   %14s %4s %4s  | %14s %4s %4s\n",
1268                    "extents", "calls", "%", "cum%",
1269                    "calls", "%", "cum%");
1270         spin_lock(&sbi->ll_lock);
1271         ll_display_extents_info(io_extents, seq, LL_PROCESS_HIST_MAX);
1272         spin_unlock(&sbi->ll_lock);
1273
1274         return 0;
1275 }
1276
1277 static ssize_t ll_rw_extents_stats_seq_write(struct file *file, const char *buf,
1278                                         size_t len, loff_t *off)
1279 {
1280         struct seq_file *seq = file->private_data;
1281         struct ll_sb_info *sbi = seq->private;
1282         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1283         int i;
1284         int value = 1, rc = 0;
1285
1286         rc = lprocfs_write_helper(buf, len, &value);
1287         if (rc < 0 && (strcmp(buf, "disabled") == 0 ||
1288                        strcmp(buf, "Disabled") == 0))
1289                 value = 0;
1290
1291         if (value == 0)
1292                 sbi->ll_rw_stats_on = 0;
1293         else
1294                 sbi->ll_rw_stats_on = 1;
1295         spin_lock(&sbi->ll_pp_extent_lock);
1296         for (i = 0; i <= LL_PROCESS_HIST_MAX; i++) {
1297                 io_extents->pp_extents[i].pid = 0;
1298                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_r_hist);
1299                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_w_hist);
1300         }
1301         spin_unlock(&sbi->ll_pp_extent_lock);
1302
1303         return len;
1304 }
1305
1306 LPROC_SEQ_FOPS(ll_rw_extents_stats);
1307
1308 void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
1309                        struct ll_file_data *file, loff_t pos,
1310                        size_t count, int rw)
1311 {
1312         int i, cur = -1;
1313         struct ll_rw_process_info *process;
1314         struct ll_rw_process_info *offset;
1315         int *off_count = &sbi->ll_rw_offset_entry_count;
1316         int *process_count = &sbi->ll_offset_process_count;
1317         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1318
1319         if(!sbi->ll_rw_stats_on)
1320                 return;
1321         process = sbi->ll_rw_process_info;
1322         offset = sbi->ll_rw_offset_info;
1323
1324         spin_lock(&sbi->ll_pp_extent_lock);
1325         /* Extent statistics */
1326         for(i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1327                 if(io_extents->pp_extents[i].pid == pid) {
1328                         cur = i;
1329                         break;
1330                 }
1331         }
1332
1333         if (cur == -1) {
1334                 /* new process */
1335                 sbi->ll_extent_process_count =
1336                         (sbi->ll_extent_process_count + 1) % LL_PROCESS_HIST_MAX;
1337                 cur = sbi->ll_extent_process_count;
1338                 io_extents->pp_extents[cur].pid = pid;
1339                 lprocfs_oh_clear(&io_extents->pp_extents[cur].pp_r_hist);
1340                 lprocfs_oh_clear(&io_extents->pp_extents[cur].pp_w_hist);
1341         }
1342
1343         for(i = 0; (count >= (1 << LL_HIST_START << i)) &&
1344              (i < (LL_HIST_MAX - 1)); i++);
1345         if (rw == 0) {
1346                 io_extents->pp_extents[cur].pp_r_hist.oh_buckets[i]++;
1347                 io_extents->pp_extents[LL_PROCESS_HIST_MAX].pp_r_hist.oh_buckets[i]++;
1348         } else {
1349                 io_extents->pp_extents[cur].pp_w_hist.oh_buckets[i]++;
1350                 io_extents->pp_extents[LL_PROCESS_HIST_MAX].pp_w_hist.oh_buckets[i]++;
1351         }
1352         spin_unlock(&sbi->ll_pp_extent_lock);
1353
1354         spin_lock(&sbi->ll_process_lock);
1355         /* Offset statistics */
1356         for (i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1357                 if (process[i].rw_pid == pid) {
1358                         if (process[i].rw_last_file != file) {
1359                                 process[i].rw_range_start = pos;
1360                                 process[i].rw_last_file_pos = pos + count;
1361                                 process[i].rw_smallest_extent = count;
1362                                 process[i].rw_largest_extent = count;
1363                                 process[i].rw_offset = 0;
1364                                 process[i].rw_last_file = file;
1365                                 spin_unlock(&sbi->ll_process_lock);
1366                                 return;
1367                         }
1368                         if (process[i].rw_last_file_pos != pos) {
1369                                 *off_count =
1370                                     (*off_count + 1) % LL_OFFSET_HIST_MAX;
1371                                 offset[*off_count].rw_op = process[i].rw_op;
1372                                 offset[*off_count].rw_pid = pid;
1373                                 offset[*off_count].rw_range_start =
1374                                         process[i].rw_range_start;
1375                                 offset[*off_count].rw_range_end =
1376                                         process[i].rw_last_file_pos;
1377                                 offset[*off_count].rw_smallest_extent =
1378                                         process[i].rw_smallest_extent;
1379                                 offset[*off_count].rw_largest_extent =
1380                                         process[i].rw_largest_extent;
1381                                 offset[*off_count].rw_offset =
1382                                         process[i].rw_offset;
1383                                 process[i].rw_op = rw;
1384                                 process[i].rw_range_start = pos;
1385                                 process[i].rw_smallest_extent = count;
1386                                 process[i].rw_largest_extent = count;
1387                                 process[i].rw_offset = pos -
1388                                         process[i].rw_last_file_pos;
1389                         }
1390                         if(process[i].rw_smallest_extent > count)
1391                                 process[i].rw_smallest_extent = count;
1392                         if(process[i].rw_largest_extent < count)
1393                                 process[i].rw_largest_extent = count;
1394                         process[i].rw_last_file_pos = pos + count;
1395                         spin_unlock(&sbi->ll_process_lock);
1396                         return;
1397                 }
1398         }
1399         *process_count = (*process_count + 1) % LL_PROCESS_HIST_MAX;
1400         process[*process_count].rw_pid = pid;
1401         process[*process_count].rw_op = rw;
1402         process[*process_count].rw_range_start = pos;
1403         process[*process_count].rw_last_file_pos = pos + count;
1404         process[*process_count].rw_smallest_extent = count;
1405         process[*process_count].rw_largest_extent = count;
1406         process[*process_count].rw_offset = 0;
1407         process[*process_count].rw_last_file = file;
1408         spin_unlock(&sbi->ll_process_lock);
1409 }
1410
1411 static int ll_rw_offset_stats_seq_show(struct seq_file *seq, void *v)
1412 {
1413         struct timeval now;
1414         struct ll_sb_info *sbi = seq->private;
1415         struct ll_rw_process_info *offset = sbi->ll_rw_offset_info;
1416         struct ll_rw_process_info *process = sbi->ll_rw_process_info;
1417         int i;
1418
1419         do_gettimeofday(&now);
1420
1421         if (!sbi->ll_rw_stats_on) {
1422                 seq_printf(seq, "disabled\n"
1423                                 "write anything in this file to activate, "
1424                                 "then 0 or \"[D/d]isabled\" to deactivate\n");
1425                 return 0;
1426         }
1427         spin_lock(&sbi->ll_process_lock);
1428
1429         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
1430                    now.tv_sec, now.tv_usec);
1431         seq_printf(seq, "%3s %10s %14s %14s %17s %17s %14s\n",
1432                    "R/W", "PID", "RANGE START", "RANGE END",
1433                    "SMALLEST EXTENT", "LARGEST EXTENT", "OFFSET");
1434
1435         /* We stored the discontiguous offsets here; print them first */
1436         for (i = 0; i < LL_OFFSET_HIST_MAX; i++) {
1437                 if (offset[i].rw_pid != 0)
1438                         seq_printf(seq,
1439                                    "%3c %10d %14Lu %14Lu %17lu %17lu %14Lu",
1440                                    offset[i].rw_op == READ ? 'R' : 'W',
1441                                    offset[i].rw_pid,
1442                                    offset[i].rw_range_start,
1443                                    offset[i].rw_range_end,
1444                                    (unsigned long)offset[i].rw_smallest_extent,
1445                                    (unsigned long)offset[i].rw_largest_extent,
1446                                    offset[i].rw_offset);
1447         }
1448
1449         /* Then print the current offsets for each process */
1450         for (i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1451                 if (process[i].rw_pid != 0)
1452                         seq_printf(seq,
1453                                    "%3c %10d %14Lu %14Lu %17lu %17lu %14Lu",
1454                                    process[i].rw_op == READ ? 'R' : 'W',
1455                                    process[i].rw_pid,
1456                                    process[i].rw_range_start,
1457                                    process[i].rw_last_file_pos,
1458                                    (unsigned long)process[i].rw_smallest_extent,
1459                                    (unsigned long)process[i].rw_largest_extent,
1460                                    process[i].rw_offset);
1461         }
1462         spin_unlock(&sbi->ll_process_lock);
1463
1464         return 0;
1465 }
1466
1467 static ssize_t ll_rw_offset_stats_seq_write(struct file *file, const char *buf,
1468                                        size_t len, loff_t *off)
1469 {
1470         struct seq_file *seq = file->private_data;
1471         struct ll_sb_info *sbi = seq->private;
1472         struct ll_rw_process_info *process_info = sbi->ll_rw_process_info;
1473         struct ll_rw_process_info *offset_info = sbi->ll_rw_offset_info;
1474         int value = 1, rc = 0;
1475
1476         rc = lprocfs_write_helper(buf, len, &value);
1477
1478         if (rc < 0 && (strcmp(buf, "disabled") == 0 ||
1479                            strcmp(buf, "Disabled") == 0))
1480                 value = 0;
1481
1482         if (value == 0)
1483                 sbi->ll_rw_stats_on = 0;
1484         else
1485                 sbi->ll_rw_stats_on = 1;
1486
1487         spin_lock(&sbi->ll_process_lock);
1488         sbi->ll_offset_process_count = 0;
1489         sbi->ll_rw_offset_entry_count = 0;
1490         memset(process_info, 0, sizeof(struct ll_rw_process_info) *
1491                LL_PROCESS_HIST_MAX);
1492         memset(offset_info, 0, sizeof(struct ll_rw_process_info) *
1493                LL_OFFSET_HIST_MAX);
1494         spin_unlock(&sbi->ll_process_lock);
1495
1496         return len;
1497 }
1498
1499 LPROC_SEQ_FOPS(ll_rw_offset_stats);
1500 #endif /* LPROCFS */