Whamcloud - gitweb
LU-694 config: make 'jobid_var' global
[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, Whamcloud, Inc.
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 <lprocfs_status.h>
41 #include <linux/seq_file.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_rd_blksize(char *page, char **start, off_t off, int count,
56                          int *eof, void *data)
57 {
58         struct super_block *sb = (struct super_block *)data;
59         struct obd_statfs osfs;
60         int rc;
61
62         LASSERT(sb != NULL);
63         rc = ll_statfs_internal(sb, &osfs,
64                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
65                                 OBD_STATFS_NODELAY);
66         if (!rc) {
67               *eof = 1;
68               rc = snprintf(page, count, "%u\n", osfs.os_bsize);
69         }
70
71         return rc;
72 }
73
74 static int ll_rd_kbytestotal(char *page, char **start, off_t off, int count,
75                              int *eof, void *data)
76 {
77         struct super_block *sb = (struct super_block *)data;
78         struct obd_statfs osfs;
79         int rc;
80
81         LASSERT(sb != NULL);
82         rc = ll_statfs_internal(sb, &osfs,
83                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
84                                 OBD_STATFS_NODELAY);
85         if (!rc) {
86                 __u32 blk_size = osfs.os_bsize >> 10;
87                 __u64 result = osfs.os_blocks;
88
89                 while (blk_size >>= 1)
90                         result <<= 1;
91
92                 *eof = 1;
93                 rc = snprintf(page, count, LPU64"\n", result);
94         }
95         return rc;
96
97 }
98
99 static int ll_rd_kbytesfree(char *page, char **start, off_t off, int count,
100                             int *eof, void *data)
101 {
102         struct super_block *sb = (struct super_block *)data;
103         struct obd_statfs osfs;
104         int rc;
105
106         LASSERT(sb != NULL);
107         rc = ll_statfs_internal(sb, &osfs,
108                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
109                                 OBD_STATFS_NODELAY);
110         if (!rc) {
111                 __u32 blk_size = osfs.os_bsize >> 10;
112                 __u64 result = osfs.os_bfree;
113
114                 while (blk_size >>= 1)
115                         result <<= 1;
116
117                 *eof = 1;
118                 rc = snprintf(page, count, LPU64"\n", result);
119         }
120         return rc;
121 }
122
123 static int ll_rd_kbytesavail(char *page, char **start, off_t off, int count,
124                              int *eof, void *data)
125 {
126         struct super_block *sb = (struct super_block *)data;
127         struct obd_statfs osfs;
128         int rc;
129
130         LASSERT(sb != NULL);
131         rc = ll_statfs_internal(sb, &osfs,
132                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
133                                 OBD_STATFS_NODELAY);
134         if (!rc) {
135                 __u32 blk_size = osfs.os_bsize >> 10;
136                 __u64 result = osfs.os_bavail;
137
138                 while (blk_size >>= 1)
139                         result <<= 1;
140
141                 *eof = 1;
142                 rc = snprintf(page, count, LPU64"\n", result);
143         }
144         return rc;
145 }
146
147 static int ll_rd_filestotal(char *page, char **start, off_t off, int count,
148                             int *eof, void *data)
149 {
150         struct super_block *sb = (struct super_block *)data;
151         struct obd_statfs osfs;
152         int rc;
153
154         LASSERT(sb != NULL);
155         rc = ll_statfs_internal(sb, &osfs,
156                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
157                                 OBD_STATFS_NODELAY);
158         if (!rc) {
159                  *eof = 1;
160                  rc = snprintf(page, count, LPU64"\n", osfs.os_files);
161         }
162         return rc;
163 }
164
165 static int ll_rd_filesfree(char *page, char **start, off_t off, int count,
166                            int *eof, void *data)
167 {
168         struct super_block *sb = (struct super_block *)data;
169         struct obd_statfs osfs;
170         int rc;
171
172         LASSERT(sb != NULL);
173         rc = ll_statfs_internal(sb, &osfs,
174                                 cfs_time_shift_64(-OBD_STATFS_CACHE_SECONDS),
175                                 OBD_STATFS_NODELAY);
176         if (!rc) {
177                  *eof = 1;
178                  rc = snprintf(page, count, LPU64"\n", osfs.os_ffree);
179         }
180         return rc;
181
182 }
183
184 static int ll_rd_client_type(char *page, char **start, off_t off, int count,
185                             int *eof, void *data)
186 {
187         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)data);
188         int rc;
189
190         LASSERT(sbi != NULL);
191
192         *eof = 1;
193         if (sbi->ll_flags & LL_SBI_RMT_CLIENT)
194                 rc = snprintf(page, count, "remote client\n");
195         else
196                 rc = snprintf(page, count, "local client\n");
197
198         return rc;
199 }
200
201 static int ll_rd_fstype(char *page, char **start, off_t off, int count,
202                         int *eof, void *data)
203 {
204         struct super_block *sb = (struct super_block*)data;
205
206         LASSERT(sb != NULL);
207         *eof = 1;
208         return snprintf(page, count, "%s\n", sb->s_type->name);
209 }
210
211 static int ll_rd_sb_uuid(char *page, char **start, off_t off, int count,
212                          int *eof, void *data)
213 {
214         struct super_block *sb = (struct super_block *)data;
215
216         LASSERT(sb != NULL);
217         *eof = 1;
218         return snprintf(page, count, "%s\n", ll_s2sbi(sb)->ll_sb_uuid.uuid);
219 }
220
221 static int ll_rd_site_stats(char *page, char **start, off_t off,
222                             int count, int *eof, void *data)
223 {
224         struct super_block *sb = data;
225
226         /*
227          * See description of statistical counters in struct cl_site, and
228          * struct lu_site.
229          */
230         return cl_site_stats_print(lu2cl_site(ll_s2sbi(sb)->ll_site),
231                                    page, count);
232 }
233
234 static int ll_rd_max_readahead_mb(char *page, char **start, off_t off,
235                                    int count, int *eof, void *data)
236 {
237         struct super_block *sb = data;
238         struct ll_sb_info *sbi = ll_s2sbi(sb);
239         long pages_number;
240         int mult;
241
242         cfs_spin_lock(&sbi->ll_lock);
243         pages_number = sbi->ll_ra_info.ra_max_pages;
244         cfs_spin_unlock(&sbi->ll_lock);
245
246         mult = 1 << (20 - PAGE_CACHE_SHIFT);
247         return lprocfs_read_frac_helper(page, count, pages_number, mult);
248 }
249
250 static int ll_wr_max_readahead_mb(struct file *file, const char *buffer,
251                                   unsigned long count, void *data)
252 {
253         struct super_block *sb = data;
254         struct ll_sb_info *sbi = ll_s2sbi(sb);
255         int mult, rc, pages_number;
256
257         mult = 1 << (20 - CFS_PAGE_SHIFT);
258         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
259         if (rc)
260                 return rc;
261
262         if (pages_number < 0 || pages_number > cfs_num_physpages / 2) {
263                 CERROR("can't set file readahead more than %lu MB\n",
264                        cfs_num_physpages >> (20 - CFS_PAGE_SHIFT + 1)); /*1/2 of RAM*/
265                 return -ERANGE;
266         }
267
268         cfs_spin_lock(&sbi->ll_lock);
269         sbi->ll_ra_info.ra_max_pages = pages_number;
270         cfs_spin_unlock(&sbi->ll_lock);
271
272         return count;
273 }
274
275 static int ll_rd_max_readahead_per_file_mb(char *page, char **start, off_t off,
276                                            int count, int *eof, void *data)
277 {
278         struct super_block *sb = data;
279         struct ll_sb_info *sbi = ll_s2sbi(sb);
280         long pages_number;
281         int mult;
282
283         cfs_spin_lock(&sbi->ll_lock);
284         pages_number = sbi->ll_ra_info.ra_max_pages_per_file;
285         cfs_spin_unlock(&sbi->ll_lock);
286
287         mult = 1 << (20 - CFS_PAGE_SHIFT);
288         return lprocfs_read_frac_helper(page, count, pages_number, mult);
289 }
290
291 static int ll_wr_max_readahead_per_file_mb(struct file *file, const char *buffer,
292                                           unsigned long count, void *data)
293 {
294         struct super_block *sb = data;
295         struct ll_sb_info *sbi = ll_s2sbi(sb);
296         int mult, rc, pages_number;
297
298         mult = 1 << (20 - CFS_PAGE_SHIFT);
299         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
300         if (rc)
301                 return rc;
302
303         if (pages_number < 0 ||
304                 pages_number > sbi->ll_ra_info.ra_max_pages) {
305                 CERROR("can't set file readahead more than"
306                        "max_read_ahead_mb %lu MB\n",
307                        sbi->ll_ra_info.ra_max_pages);
308                 return -ERANGE;
309         }
310
311         cfs_spin_lock(&sbi->ll_lock);
312         sbi->ll_ra_info.ra_max_pages_per_file = pages_number;
313         cfs_spin_unlock(&sbi->ll_lock);
314
315         return count;
316 }
317
318 static int ll_rd_max_read_ahead_whole_mb(char *page, char **start, off_t off,
319                                          int count, int *eof, void *data)
320 {
321         struct super_block *sb = data;
322         struct ll_sb_info *sbi = ll_s2sbi(sb);
323         long pages_number;
324         int mult;
325
326         cfs_spin_lock(&sbi->ll_lock);
327         pages_number = sbi->ll_ra_info.ra_max_read_ahead_whole_pages;
328         cfs_spin_unlock(&sbi->ll_lock);
329
330         mult = 1 << (20 - CFS_PAGE_SHIFT);
331         return lprocfs_read_frac_helper(page, count, pages_number, mult);
332 }
333
334 static int ll_wr_max_read_ahead_whole_mb(struct file *file, const char *buffer,
335                                          unsigned long count, void *data)
336 {
337         struct super_block *sb = data;
338         struct ll_sb_info *sbi = ll_s2sbi(sb);
339         int mult, rc, pages_number;
340
341         mult = 1 << (20 - CFS_PAGE_SHIFT);
342         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
343         if (rc)
344                 return rc;
345
346         /* Cap this at the current max readahead window size, the readahead
347          * algorithm does this anyway so it's pointless to set it larger. */
348         if (pages_number < 0 ||
349             pages_number > sbi->ll_ra_info.ra_max_pages_per_file) {
350                 CERROR("can't set max_read_ahead_whole_mb more than "
351                        "max_read_ahead_per_file_mb: %lu\n",
352                         sbi->ll_ra_info.ra_max_pages_per_file >> (20 - CFS_PAGE_SHIFT));
353                 return -ERANGE;
354         }
355
356         cfs_spin_lock(&sbi->ll_lock);
357         sbi->ll_ra_info.ra_max_read_ahead_whole_pages = pages_number;
358         cfs_spin_unlock(&sbi->ll_lock);
359
360         return count;
361 }
362
363 static int ll_rd_max_cached_mb(char *page, char **start, off_t off,
364                                int count, int *eof, void *data)
365 {
366         struct super_block *sb = data;
367         struct ll_sb_info *sbi = ll_s2sbi(sb);
368         long pages_number;
369         int mult;
370
371         cfs_spin_lock(&sbi->ll_lock);
372         pages_number = sbi->ll_async_page_max;
373         cfs_spin_unlock(&sbi->ll_lock);
374
375         mult = 1 << (20 - CFS_PAGE_SHIFT);
376         return lprocfs_read_frac_helper(page, count, pages_number, mult);;
377 }
378
379 static int ll_wr_max_cached_mb(struct file *file, const char *buffer,
380                                unsigned long count, void *data)
381 {
382         struct super_block *sb = data;
383         struct ll_sb_info *sbi = ll_s2sbi(sb);
384         int mult, rc, pages_number;
385
386         mult = 1 << (20 - CFS_PAGE_SHIFT);
387         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
388         if (rc)
389                 return rc;
390
391         if (pages_number < 0 || pages_number > cfs_num_physpages) {
392                 CERROR("can't set max cache more than %lu MB\n",
393                         cfs_num_physpages >> (20 - CFS_PAGE_SHIFT));
394                 return -ERANGE;
395         }
396
397         cfs_spin_lock(&sbi->ll_lock);
398         sbi->ll_async_page_max = pages_number ;
399         cfs_spin_unlock(&sbi->ll_lock);
400
401         if (!sbi->ll_dt_exp)
402                 /* Not set up yet, don't call llap_shrink_cache */
403                 return count;
404
405         return count;
406 }
407
408 static int ll_rd_checksum(char *page, char **start, off_t off,
409                           int count, int *eof, void *data)
410 {
411         struct super_block *sb = data;
412         struct ll_sb_info *sbi = ll_s2sbi(sb);
413
414         return snprintf(page, count, "%u\n",
415                         (sbi->ll_flags & LL_SBI_CHECKSUM) ? 1 : 0);
416 }
417
418 static int ll_wr_checksum(struct file *file, const char *buffer,
419                           unsigned long count, void *data)
420 {
421         struct super_block *sb = data;
422         struct ll_sb_info *sbi = ll_s2sbi(sb);
423         int val, rc;
424
425         if (!sbi->ll_dt_exp)
426                 /* Not set up yet */
427                 return -EAGAIN;
428
429         rc = lprocfs_write_helper(buffer, count, &val);
430         if (rc)
431                 return rc;
432         if (val)
433                 sbi->ll_flags |= LL_SBI_CHECKSUM;
434         else
435                 sbi->ll_flags &= ~LL_SBI_CHECKSUM;
436
437         rc = obd_set_info_async(NULL, sbi->ll_dt_exp, sizeof(KEY_CHECKSUM),
438                                 KEY_CHECKSUM, sizeof(val), &val, NULL);
439         if (rc)
440                 CWARN("Failed to set OSC checksum flags: %d\n", rc);
441
442         return count;
443 }
444
445 static int ll_rd_max_rw_chunk(char *page, char **start, off_t off,
446                           int count, int *eof, void *data)
447 {
448         struct super_block *sb = data;
449
450         return snprintf(page, count, "%lu\n", ll_s2sbi(sb)->ll_max_rw_chunk);
451 }
452
453 static int ll_wr_max_rw_chunk(struct file *file, const char *buffer,
454                           unsigned long count, void *data)
455 {
456         struct super_block *sb = data;
457         int rc, val;
458
459         rc = lprocfs_write_helper(buffer, count, &val);
460         if (rc)
461                 return rc;
462         ll_s2sbi(sb)->ll_max_rw_chunk = val;
463         return count;
464 }
465
466 static int ll_rd_track_id(char *page, int count, void *data,
467                           enum stats_track_type type)
468 {
469         struct super_block *sb = data;
470
471         if (ll_s2sbi(sb)->ll_stats_track_type == type) {
472                 return snprintf(page, count, "%d\n",
473                                 ll_s2sbi(sb)->ll_stats_track_id);
474
475         } else if (ll_s2sbi(sb)->ll_stats_track_type == STATS_TRACK_ALL) {
476                 return snprintf(page, count, "0 (all)\n");
477         } else {
478                 return snprintf(page, count, "untracked\n");
479         }
480 }
481
482 static int ll_wr_track_id(const char *buffer, unsigned long count, void *data,
483                           enum stats_track_type type)
484 {
485         struct super_block *sb = data;
486         int rc, pid;
487
488         rc = lprocfs_write_helper(buffer, count, &pid);
489         if (rc)
490                 return rc;
491         ll_s2sbi(sb)->ll_stats_track_id = pid;
492         if (pid == 0)
493                 ll_s2sbi(sb)->ll_stats_track_type = STATS_TRACK_ALL;
494         else
495                 ll_s2sbi(sb)->ll_stats_track_type = type;
496         lprocfs_clear_stats(ll_s2sbi(sb)->ll_stats);
497         return count;
498 }
499
500 static int ll_rd_track_pid(char *page, char **start, off_t off,
501                           int count, int *eof, void *data)
502 {
503         return (ll_rd_track_id(page, count, data, STATS_TRACK_PID));
504 }
505
506 static int ll_wr_track_pid(struct file *file, const char *buffer,
507                           unsigned long count, void *data)
508 {
509         return (ll_wr_track_id(buffer, count, data, STATS_TRACK_PID));
510 }
511
512 static int ll_rd_track_ppid(char *page, char **start, off_t off,
513                           int count, int *eof, void *data)
514 {
515         return (ll_rd_track_id(page, count, data, STATS_TRACK_PPID));
516 }
517
518 static int ll_wr_track_ppid(struct file *file, const char *buffer,
519                           unsigned long count, void *data)
520 {
521         return (ll_wr_track_id(buffer, count, data, STATS_TRACK_PPID));
522 }
523
524 static int ll_rd_track_gid(char *page, char **start, off_t off,
525                           int count, int *eof, void *data)
526 {
527         return (ll_rd_track_id(page, count, data, STATS_TRACK_GID));
528 }
529
530 static int ll_wr_track_gid(struct file *file, const char *buffer,
531                           unsigned long count, void *data)
532 {
533         return (ll_wr_track_id(buffer, count, data, STATS_TRACK_GID));
534 }
535
536 static int ll_rd_statahead_max(char *page, char **start, off_t off,
537                                int count, int *eof, void *data)
538 {
539         struct super_block *sb = data;
540         struct ll_sb_info *sbi = ll_s2sbi(sb);
541
542         return snprintf(page, count, "%u\n", sbi->ll_sa_max);
543 }
544
545 static int ll_wr_statahead_max(struct file *file, const char *buffer,
546                                unsigned long count, void *data)
547 {
548         struct super_block *sb = data;
549         struct ll_sb_info *sbi = ll_s2sbi(sb);
550         int val, rc;
551
552         rc = lprocfs_write_helper(buffer, count, &val);
553         if (rc)
554                 return rc;
555
556         if (val >= 0 && val <= LL_SA_RPC_MAX)
557                 sbi->ll_sa_max = val;
558         else
559                 CERROR("Bad statahead_max value %d. Valid values are in the "
560                        "range [0, %d]\n", val, LL_SA_RPC_MAX);
561
562         return count;
563 }
564
565 static int ll_rd_statahead_agl(char *page, char **start, off_t off,
566                                int count, int *eof, void *data)
567 {
568         struct super_block *sb = data;
569         struct ll_sb_info *sbi = ll_s2sbi(sb);
570
571         return snprintf(page, count, "%u\n",
572                         sbi->ll_flags & LL_SBI_AGL_ENABLED ? 1 : 0);
573 }
574
575 static int ll_wr_statahead_agl(struct file *file, const char *buffer,
576                                unsigned long count, void *data)
577 {
578         struct super_block *sb = data;
579         struct ll_sb_info *sbi = ll_s2sbi(sb);
580         int val, rc;
581
582         rc = lprocfs_write_helper(buffer, count, &val);
583         if (rc)
584                 return rc;
585
586         if (val)
587                 sbi->ll_flags |= LL_SBI_AGL_ENABLED;
588         else
589                 sbi->ll_flags &= ~LL_SBI_AGL_ENABLED;
590
591         return count;
592 }
593
594 static int ll_rd_statahead_stats(char *page, char **start, off_t off,
595                                  int count, int *eof, void *data)
596 {
597         struct super_block *sb = data;
598         struct ll_sb_info *sbi = ll_s2sbi(sb);
599
600         return snprintf(page, count,
601                         "statahead total: %u\n"
602                         "statahead wrong: %u\n"
603                         "agl total: %u\n",
604                         atomic_read(&sbi->ll_sa_total),
605                         atomic_read(&sbi->ll_sa_wrong),
606                         atomic_read(&sbi->ll_agl_total));
607 }
608
609 static int ll_rd_lazystatfs(char *page, char **start, off_t off,
610                             int count, int *eof, void *data)
611 {
612         struct super_block *sb = data;
613         struct ll_sb_info *sbi = ll_s2sbi(sb);
614
615         return snprintf(page, count, "%u\n",
616                         (sbi->ll_flags & LL_SBI_LAZYSTATFS) ? 1 : 0);
617 }
618
619 static int ll_wr_lazystatfs(struct file *file, const char *buffer,
620                             unsigned long count, void *data)
621 {
622         struct super_block *sb = data;
623         struct ll_sb_info *sbi = ll_s2sbi(sb);
624         int val, rc;
625
626         rc = lprocfs_write_helper(buffer, count, &val);
627         if (rc)
628                 return rc;
629
630         if (val)
631                 sbi->ll_flags |= LL_SBI_LAZYSTATFS;
632         else
633                 sbi->ll_flags &= ~LL_SBI_LAZYSTATFS;
634
635         return count;
636 }
637
638 static int ll_rd_maxea_size(char *page, char **start, off_t off,
639                             int count, int *eof, void *data)
640 {
641         struct super_block *sb = data;
642         struct ll_sb_info *sbi = ll_s2sbi(sb);
643         unsigned int ealen;
644         int rc;
645
646         rc = ll_get_max_mdsize(sbi, &ealen);
647         if (rc)
648                 return rc;
649
650         return snprintf(page, count, "%u\n", ealen);
651 }
652
653 static struct lprocfs_vars lprocfs_llite_obd_vars[] = {
654         { "uuid",         ll_rd_sb_uuid,          0, 0 },
655         //{ "mntpt_path",   ll_rd_path,             0, 0 },
656         { "fstype",       ll_rd_fstype,           0, 0 },
657         { "site",         ll_rd_site_stats,       0, 0 },
658         { "blocksize",    ll_rd_blksize,          0, 0 },
659         { "kbytestotal",  ll_rd_kbytestotal,      0, 0 },
660         { "kbytesfree",   ll_rd_kbytesfree,       0, 0 },
661         { "kbytesavail",  ll_rd_kbytesavail,      0, 0 },
662         { "filestotal",   ll_rd_filestotal,       0, 0 },
663         { "filesfree",    ll_rd_filesfree,        0, 0 },
664         { "client_type",  ll_rd_client_type,      0, 0 },
665         //{ "filegroups",   lprocfs_rd_filegroups,  0, 0 },
666         { "max_read_ahead_mb", ll_rd_max_readahead_mb,
667                                ll_wr_max_readahead_mb, 0 },
668         { "max_read_ahead_per_file_mb", ll_rd_max_readahead_per_file_mb,
669                                         ll_wr_max_readahead_per_file_mb, 0 },
670         { "max_read_ahead_whole_mb", ll_rd_max_read_ahead_whole_mb,
671                                      ll_wr_max_read_ahead_whole_mb, 0 },
672         { "max_cached_mb",    ll_rd_max_cached_mb, ll_wr_max_cached_mb, 0 },
673         { "checksum_pages",   ll_rd_checksum, ll_wr_checksum, 0 },
674         { "max_rw_chunk",     ll_rd_max_rw_chunk, ll_wr_max_rw_chunk, 0 },
675         { "stats_track_pid",  ll_rd_track_pid, ll_wr_track_pid, 0 },
676         { "stats_track_ppid", ll_rd_track_ppid, ll_wr_track_ppid, 0 },
677         { "stats_track_gid",  ll_rd_track_gid, ll_wr_track_gid, 0 },
678         { "statahead_max",    ll_rd_statahead_max, ll_wr_statahead_max, 0 },
679         { "statahead_agl",    ll_rd_statahead_agl, ll_wr_statahead_agl, 0 },
680         { "statahead_stats",  ll_rd_statahead_stats, 0, 0 },
681         { "lazystatfs",       ll_rd_lazystatfs, ll_wr_lazystatfs, 0 },
682         { "max_easize",       ll_rd_maxea_size, 0, 0 },
683         { 0 }
684 };
685
686 #define MAX_STRING_SIZE 128
687
688 struct llite_file_opcode {
689         __u32       opcode;
690         __u32       type;
691         const char *opname;
692 } llite_opcode_table[LPROC_LL_FILE_OPCODES] = {
693         /* file operation */
694         { LPROC_LL_DIRTY_HITS,     LPROCFS_TYPE_REGS, "dirty_pages_hits" },
695         { LPROC_LL_DIRTY_MISSES,   LPROCFS_TYPE_REGS, "dirty_pages_misses" },
696         { LPROC_LL_READ_BYTES,     LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
697                                    "read_bytes" },
698         { LPROC_LL_WRITE_BYTES,    LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
699                                    "write_bytes" },
700         { LPROC_LL_BRW_READ,       LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_PAGES,
701                                    "brw_read" },
702         { LPROC_LL_BRW_WRITE,      LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_PAGES,
703                                    "brw_write" },
704         { LPROC_LL_OSC_READ,       LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
705                                    "osc_read" },
706         { LPROC_LL_OSC_WRITE,      LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
707                                    "osc_write" },
708         { LPROC_LL_IOCTL,          LPROCFS_TYPE_REGS, "ioctl" },
709         { LPROC_LL_OPEN,           LPROCFS_TYPE_REGS, "open" },
710         { LPROC_LL_RELEASE,        LPROCFS_TYPE_REGS, "close" },
711         { LPROC_LL_MAP,            LPROCFS_TYPE_REGS, "mmap" },
712         { LPROC_LL_LLSEEK,         LPROCFS_TYPE_REGS, "seek" },
713         { LPROC_LL_FSYNC,          LPROCFS_TYPE_REGS, "fsync" },
714         { LPROC_LL_READDIR,        LPROCFS_TYPE_REGS, "readdir" },
715         /* inode operation */
716         { LPROC_LL_SETATTR,        LPROCFS_TYPE_REGS, "setattr" },
717         { LPROC_LL_TRUNC,          LPROCFS_TYPE_REGS, "truncate" },
718         { LPROC_LL_FLOCK,          LPROCFS_TYPE_REGS, "flock" },
719         { LPROC_LL_GETATTR,        LPROCFS_TYPE_REGS, "getattr" },
720         /* dir inode operation */
721         { LPROC_LL_CREATE,         LPROCFS_TYPE_REGS, "create" },
722         { LPROC_LL_LINK,           LPROCFS_TYPE_REGS, "link" },
723         { LPROC_LL_UNLINK,         LPROCFS_TYPE_REGS, "unlink" },
724         { LPROC_LL_SYMLINK,        LPROCFS_TYPE_REGS, "symlink" },
725         { LPROC_LL_MKDIR,          LPROCFS_TYPE_REGS, "mkdir" },
726         { LPROC_LL_RMDIR,          LPROCFS_TYPE_REGS, "rmdir" },
727         { LPROC_LL_MKNOD,          LPROCFS_TYPE_REGS, "mknod" },
728         { LPROC_LL_RENAME,         LPROCFS_TYPE_REGS, "rename" },
729         /* special inode operation */
730         { LPROC_LL_STAFS,          LPROCFS_TYPE_REGS, "statfs" },
731         { LPROC_LL_ALLOC_INODE,    LPROCFS_TYPE_REGS, "alloc_inode" },
732         { LPROC_LL_SETXATTR,       LPROCFS_TYPE_REGS, "setxattr" },
733         { LPROC_LL_GETXATTR,       LPROCFS_TYPE_REGS, "getxattr" },
734         { LPROC_LL_LISTXATTR,      LPROCFS_TYPE_REGS, "listxattr" },
735         { LPROC_LL_REMOVEXATTR,    LPROCFS_TYPE_REGS, "removexattr" },
736         { LPROC_LL_INODE_PERM,     LPROCFS_TYPE_REGS, "inode_permission" },
737 };
738
739 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count)
740 {
741         if (!sbi->ll_stats)
742                 return;
743         if (sbi->ll_stats_track_type == STATS_TRACK_ALL)
744                 lprocfs_counter_add(sbi->ll_stats, op, count);
745         else if (sbi->ll_stats_track_type == STATS_TRACK_PID &&
746                  sbi->ll_stats_track_id == current->pid)
747                 lprocfs_counter_add(sbi->ll_stats, op, count);
748         else if (sbi->ll_stats_track_type == STATS_TRACK_PPID &&
749                  sbi->ll_stats_track_id == current->parent->pid)
750                 lprocfs_counter_add(sbi->ll_stats, op, count);
751         else if (sbi->ll_stats_track_type == STATS_TRACK_GID &&
752                  sbi->ll_stats_track_id == cfs_curproc_gid())
753                 lprocfs_counter_add(sbi->ll_stats, op, count);
754 }
755 EXPORT_SYMBOL(ll_stats_ops_tally);
756
757 static const char *ra_stat_string[] = {
758         [RA_STAT_HIT] = "hits",
759         [RA_STAT_MISS] = "misses",
760         [RA_STAT_DISTANT_READPAGE] = "readpage not consecutive",
761         [RA_STAT_MISS_IN_WINDOW] = "miss inside window",
762         [RA_STAT_FAILED_GRAB_PAGE] = "failed grab_cache_page",
763         [RA_STAT_FAILED_MATCH] = "failed lock match",
764         [RA_STAT_DISCARDED] = "read but discarded",
765         [RA_STAT_ZERO_LEN] = "zero length file",
766         [RA_STAT_ZERO_WINDOW] = "zero size window",
767         [RA_STAT_EOF] = "read-ahead to EOF",
768         [RA_STAT_MAX_IN_FLIGHT] = "hit max r-a issue",
769         [RA_STAT_WRONG_GRAB_PAGE] = "wrong page from grab_cache_page",
770 };
771
772
773 int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
774                                 struct super_block *sb, char *osc, char *mdc)
775 {
776         struct lprocfs_vars lvars[2];
777         struct lustre_sb_info *lsi = s2lsi(sb);
778         struct ll_sb_info *sbi = ll_s2sbi(sb);
779         struct obd_device *obd;
780         char name[MAX_STRING_SIZE + 1], *ptr;
781         int err, id, len, rc;
782         ENTRY;
783
784         memset(lvars, 0, sizeof(lvars));
785
786         name[MAX_STRING_SIZE] = '\0';
787         lvars[0].name = name;
788
789         LASSERT(sbi != NULL);
790         LASSERT(mdc != NULL);
791         LASSERT(osc != NULL);
792
793         /* Get fsname */
794         len = strlen(lsi->lsi_lmd->lmd_profile);
795         ptr = strrchr(lsi->lsi_lmd->lmd_profile, '-');
796         if (ptr && (strcmp(ptr, "-client") == 0))
797                 len -= 7;
798
799         /* Mount info */
800         snprintf(name, MAX_STRING_SIZE, "%.*s-%p", len,
801                  lsi->lsi_lmd->lmd_profile, sb);
802
803         sbi->ll_proc_root = lprocfs_register(name, parent, NULL, NULL);
804         if (IS_ERR(sbi->ll_proc_root)) {
805                 err = PTR_ERR(sbi->ll_proc_root);
806                 sbi->ll_proc_root = NULL;
807                 RETURN(err);
808         }
809
810         rc = lprocfs_seq_create(sbi->ll_proc_root, "dump_page_cache", 0444,
811                                 &vvp_dump_pgcache_file_ops, sbi);
812         if (rc)
813                 CWARN("Error adding the dump_page_cache file\n");
814
815         rc = lprocfs_seq_create(sbi->ll_proc_root, "extents_stats", 0644,
816                                 &ll_rw_extents_stats_fops, sbi);
817         if (rc)
818                 CWARN("Error adding the extent_stats file\n");
819
820         rc = lprocfs_seq_create(sbi->ll_proc_root, "extents_stats_per_process",
821                                 0644, &ll_rw_extents_stats_pp_fops, sbi);
822         if (rc)
823                 CWARN("Error adding the extents_stats_per_process file\n");
824
825         rc = lprocfs_seq_create(sbi->ll_proc_root, "offset_stats", 0644,
826                                 &ll_rw_offset_stats_fops, sbi);
827         if (rc)
828                 CWARN("Error adding the offset_stats file\n");
829
830         /* File operations stats */
831         sbi->ll_stats = lprocfs_alloc_stats(LPROC_LL_FILE_OPCODES,
832                                             LPROCFS_STATS_FLAG_NONE);
833         if (sbi->ll_stats == NULL)
834                 GOTO(out, err = -ENOMEM);
835         /* do counter init */
836         for (id = 0; id < LPROC_LL_FILE_OPCODES; id++) {
837                 __u32 type = llite_opcode_table[id].type;
838                 void *ptr = NULL;
839                 if (type & LPROCFS_TYPE_REGS)
840                         ptr = "regs";
841                 else if (type & LPROCFS_TYPE_BYTES)
842                         ptr = "bytes";
843                 else if (type & LPROCFS_TYPE_PAGES)
844                         ptr = "pages";
845                 lprocfs_counter_init(sbi->ll_stats,
846                                      llite_opcode_table[id].opcode,
847                                      (type & LPROCFS_CNTR_AVGMINMAX),
848                                      llite_opcode_table[id].opname, ptr);
849         }
850         err = lprocfs_register_stats(sbi->ll_proc_root, "stats", sbi->ll_stats);
851         if (err)
852                 GOTO(out, err);
853
854         sbi->ll_ra_stats = lprocfs_alloc_stats(ARRAY_SIZE(ra_stat_string),
855                                                LPROCFS_STATS_FLAG_NONE);
856         if (sbi->ll_ra_stats == NULL)
857                 GOTO(out, err = -ENOMEM);
858
859         for (id = 0; id < ARRAY_SIZE(ra_stat_string); id++)
860                 lprocfs_counter_init(sbi->ll_ra_stats, id, 0,
861                                      ra_stat_string[id], "pages");
862         err = lprocfs_register_stats(sbi->ll_proc_root, "read_ahead_stats",
863                                      sbi->ll_ra_stats);
864         if (err)
865                 GOTO(out, err);
866
867
868         err = lprocfs_add_vars(sbi->ll_proc_root, lprocfs_llite_obd_vars, sb);
869         if (err)
870                 GOTO(out, err);
871
872         /* MDC info */
873         obd = class_name2obd(mdc);
874
875         LASSERT(obd != NULL);
876         LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
877         LASSERT(obd->obd_type->typ_name != NULL);
878
879         snprintf(name, MAX_STRING_SIZE, "%s/common_name",
880                  obd->obd_type->typ_name);
881         lvars[0].read_fptr = lprocfs_rd_name;
882         err = lprocfs_add_vars(sbi->ll_proc_root, lvars, obd);
883         if (err)
884                 GOTO(out, err);
885
886         snprintf(name, MAX_STRING_SIZE, "%s/uuid", obd->obd_type->typ_name);
887         lvars[0].read_fptr = lprocfs_rd_uuid;
888         err = lprocfs_add_vars(sbi->ll_proc_root, lvars, obd);
889         if (err)
890                 GOTO(out, err);
891
892         /* OSC */
893         obd = class_name2obd(osc);
894
895         LASSERT(obd != NULL);
896         LASSERT(obd->obd_magic == OBD_DEVICE_MAGIC);
897         LASSERT(obd->obd_type->typ_name != NULL);
898
899         snprintf(name, MAX_STRING_SIZE, "%s/common_name",
900                  obd->obd_type->typ_name);
901         lvars[0].read_fptr = lprocfs_rd_name;
902         err = lprocfs_add_vars(sbi->ll_proc_root, lvars, obd);
903         if (err)
904                 GOTO(out, err);
905
906         snprintf(name, MAX_STRING_SIZE, "%s/uuid", obd->obd_type->typ_name);
907         lvars[0].read_fptr = lprocfs_rd_uuid;
908         err = lprocfs_add_vars(sbi->ll_proc_root, lvars, obd);
909 out:
910         if (err) {
911                 lprocfs_remove(&sbi->ll_proc_root);
912                 lprocfs_free_stats(&sbi->ll_ra_stats);
913                 lprocfs_free_stats(&sbi->ll_stats);
914         }
915         RETURN(err);
916 }
917
918 void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi)
919 {
920         if (sbi->ll_proc_root) {
921                 lprocfs_remove(&sbi->ll_proc_root);
922                 lprocfs_free_stats(&sbi->ll_ra_stats);
923                 lprocfs_free_stats(&sbi->ll_stats);
924         }
925 }
926 #undef MAX_STRING_SIZE
927
928 #define pct(a,b) (b ? a * 100 / b : 0)
929
930 static void ll_display_extents_info(struct ll_rw_extents_info *io_extents,
931                                    struct seq_file *seq, int which)
932 {
933         unsigned long read_tot = 0, write_tot = 0, read_cum, write_cum;
934         unsigned long start, end, r, w;
935         char *unitp = "KMGTPEZY";
936         int i, units = 10;
937         struct per_process_info *pp_info = &io_extents->pp_extents[which];
938
939         read_cum = 0;
940         write_cum = 0;
941         start = 0;
942
943         for(i = 0; i < LL_HIST_MAX; i++) {
944                 read_tot += pp_info->pp_r_hist.oh_buckets[i];
945                 write_tot += pp_info->pp_w_hist.oh_buckets[i];
946         }
947
948         for(i = 0; i < LL_HIST_MAX; i++) {
949                 r = pp_info->pp_r_hist.oh_buckets[i];
950                 w = pp_info->pp_w_hist.oh_buckets[i];
951                 read_cum += r;
952                 write_cum += w;
953                 end = 1 << (i + LL_HIST_START - units);
954                 seq_printf(seq, "%4lu%c - %4lu%c%c: %14lu %4lu %4lu  | "
955                            "%14lu %4lu %4lu\n", start, *unitp, end, *unitp,
956                            (i == LL_HIST_MAX - 1) ? '+' : ' ',
957                            r, pct(r, read_tot), pct(read_cum, read_tot),
958                            w, pct(w, write_tot), pct(write_cum, write_tot));
959                 start = end;
960                 if (start == 1<<10) {
961                         start = 1;
962                         units += 10;
963                         unitp++;
964                 }
965                 if (read_cum == read_tot && write_cum == write_tot)
966                         break;
967         }
968 }
969
970 static int ll_rw_extents_stats_pp_seq_show(struct seq_file *seq, void *v)
971 {
972         struct timeval now;
973         struct ll_sb_info *sbi = seq->private;
974         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
975         int k;
976
977         cfs_gettimeofday(&now);
978
979         if (!sbi->ll_rw_stats_on) {
980                 seq_printf(seq, "disabled\n"
981                                 "write anything in this file to activate, "
982                                 "then 0 or \"[D/d]isabled\" to deactivate\n");
983                 return 0;
984         }
985         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
986                    now.tv_sec, now.tv_usec);
987         seq_printf(seq, "%15s %19s       | %20s\n", " ", "read", "write");
988         seq_printf(seq, "%13s   %14s %4s %4s  | %14s %4s %4s\n",
989                    "extents", "calls", "%", "cum%",
990                    "calls", "%", "cum%");
991         cfs_spin_lock(&sbi->ll_pp_extent_lock);
992         for(k = 0; k < LL_PROCESS_HIST_MAX; k++) {
993                 if(io_extents->pp_extents[k].pid != 0) {
994                         seq_printf(seq, "\nPID: %d\n",
995                                    io_extents->pp_extents[k].pid);
996                         ll_display_extents_info(io_extents, seq, k);
997                 }
998         }
999         cfs_spin_unlock(&sbi->ll_pp_extent_lock);
1000         return 0;
1001 }
1002
1003 static ssize_t ll_rw_extents_stats_pp_seq_write(struct file *file,
1004                                                 const char *buf, size_t len,
1005                                                 loff_t *off)
1006 {
1007         struct seq_file *seq = file->private_data;
1008         struct ll_sb_info *sbi = seq->private;
1009         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1010         int i;
1011         int value = 1, rc = 0;
1012
1013         rc = lprocfs_write_helper(buf, len, &value);
1014         if (rc < 0 && (strcmp(buf, "disabled") == 0 ||
1015                        strcmp(buf, "Disabled") == 0))
1016                 value = 0;
1017
1018         if (value == 0)
1019                 sbi->ll_rw_stats_on = 0;
1020         else
1021                 sbi->ll_rw_stats_on = 1;
1022
1023         cfs_spin_lock(&sbi->ll_pp_extent_lock);
1024         for(i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1025                 io_extents->pp_extents[i].pid = 0;
1026                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_r_hist);
1027                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_w_hist);
1028         }
1029         cfs_spin_unlock(&sbi->ll_pp_extent_lock);
1030         return len;
1031 }
1032
1033 LPROC_SEQ_FOPS(ll_rw_extents_stats_pp);
1034
1035 static int ll_rw_extents_stats_seq_show(struct seq_file *seq, void *v)
1036 {
1037         struct timeval now;
1038         struct ll_sb_info *sbi = seq->private;
1039         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1040
1041         cfs_gettimeofday(&now);
1042
1043         if (!sbi->ll_rw_stats_on) {
1044                 seq_printf(seq, "disabled\n"
1045                                 "write anything in this file to activate, "
1046                                 "then 0 or \"[D/d]isabled\" to deactivate\n");
1047                 return 0;
1048         }
1049         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
1050                    now.tv_sec, now.tv_usec);
1051
1052         seq_printf(seq, "%15s %19s       | %20s\n", " ", "read", "write");
1053         seq_printf(seq, "%13s   %14s %4s %4s  | %14s %4s %4s\n",
1054                    "extents", "calls", "%", "cum%",
1055                    "calls", "%", "cum%");
1056         cfs_spin_lock(&sbi->ll_lock);
1057         ll_display_extents_info(io_extents, seq, LL_PROCESS_HIST_MAX);
1058         cfs_spin_unlock(&sbi->ll_lock);
1059
1060         return 0;
1061 }
1062
1063 static ssize_t ll_rw_extents_stats_seq_write(struct file *file, const char *buf,
1064                                         size_t len, loff_t *off)
1065 {
1066         struct seq_file *seq = file->private_data;
1067         struct ll_sb_info *sbi = seq->private;
1068         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1069         int i;
1070         int value = 1, rc = 0;
1071
1072         rc = lprocfs_write_helper(buf, len, &value);
1073         if (rc < 0 && (strcmp(buf, "disabled") == 0 ||
1074                        strcmp(buf, "Disabled") == 0))
1075                 value = 0;
1076
1077         if (value == 0)
1078                 sbi->ll_rw_stats_on = 0;
1079         else
1080                 sbi->ll_rw_stats_on = 1;
1081         cfs_spin_lock(&sbi->ll_pp_extent_lock);
1082         for(i = 0; i <= LL_PROCESS_HIST_MAX; i++)
1083         {
1084                 io_extents->pp_extents[i].pid = 0;
1085                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_r_hist);
1086                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_w_hist);
1087         }
1088         cfs_spin_unlock(&sbi->ll_pp_extent_lock);
1089
1090         return len;
1091 }
1092
1093 LPROC_SEQ_FOPS(ll_rw_extents_stats);
1094
1095 void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
1096                        struct ll_file_data *file, loff_t pos,
1097                        size_t count, int rw)
1098 {
1099         int i, cur = -1;
1100         struct ll_rw_process_info *process;
1101         struct ll_rw_process_info *offset;
1102         int *off_count = &sbi->ll_rw_offset_entry_count;
1103         int *process_count = &sbi->ll_offset_process_count;
1104         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1105
1106         if(!sbi->ll_rw_stats_on)
1107                 return;
1108         process = sbi->ll_rw_process_info;
1109         offset = sbi->ll_rw_offset_info;
1110
1111         cfs_spin_lock(&sbi->ll_pp_extent_lock);
1112         /* Extent statistics */
1113         for(i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1114                 if(io_extents->pp_extents[i].pid == pid) {
1115                         cur = i;
1116                         break;
1117                 }
1118         }
1119
1120         if (cur == -1) {
1121                 /* new process */
1122                 sbi->ll_extent_process_count =
1123                         (sbi->ll_extent_process_count + 1) % LL_PROCESS_HIST_MAX;
1124                 cur = sbi->ll_extent_process_count;
1125                 io_extents->pp_extents[cur].pid = pid;
1126                 lprocfs_oh_clear(&io_extents->pp_extents[cur].pp_r_hist);
1127                 lprocfs_oh_clear(&io_extents->pp_extents[cur].pp_w_hist);
1128         }
1129
1130         for(i = 0; (count >= (1 << LL_HIST_START << i)) &&
1131              (i < (LL_HIST_MAX - 1)); i++);
1132         if (rw == 0) {
1133                 io_extents->pp_extents[cur].pp_r_hist.oh_buckets[i]++;
1134                 io_extents->pp_extents[LL_PROCESS_HIST_MAX].pp_r_hist.oh_buckets[i]++;
1135         } else {
1136                 io_extents->pp_extents[cur].pp_w_hist.oh_buckets[i]++;
1137                 io_extents->pp_extents[LL_PROCESS_HIST_MAX].pp_w_hist.oh_buckets[i]++;
1138         }
1139         cfs_spin_unlock(&sbi->ll_pp_extent_lock);
1140
1141         cfs_spin_lock(&sbi->ll_process_lock);
1142         /* Offset statistics */
1143         for (i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1144                 if (process[i].rw_pid == pid) {
1145                         if (process[i].rw_last_file != file) {
1146                                 process[i].rw_range_start = pos;
1147                                 process[i].rw_last_file_pos = pos + count;
1148                                 process[i].rw_smallest_extent = count;
1149                                 process[i].rw_largest_extent = count;
1150                                 process[i].rw_offset = 0;
1151                                 process[i].rw_last_file = file;
1152                                 cfs_spin_unlock(&sbi->ll_process_lock);
1153                                 return;
1154                         }
1155                         if (process[i].rw_last_file_pos != pos) {
1156                                 *off_count =
1157                                     (*off_count + 1) % LL_OFFSET_HIST_MAX;
1158                                 offset[*off_count].rw_op = process[i].rw_op;
1159                                 offset[*off_count].rw_pid = pid;
1160                                 offset[*off_count].rw_range_start =
1161                                         process[i].rw_range_start;
1162                                 offset[*off_count].rw_range_end =
1163                                         process[i].rw_last_file_pos;
1164                                 offset[*off_count].rw_smallest_extent =
1165                                         process[i].rw_smallest_extent;
1166                                 offset[*off_count].rw_largest_extent =
1167                                         process[i].rw_largest_extent;
1168                                 offset[*off_count].rw_offset =
1169                                         process[i].rw_offset;
1170                                 process[i].rw_op = rw;
1171                                 process[i].rw_range_start = pos;
1172                                 process[i].rw_smallest_extent = count;
1173                                 process[i].rw_largest_extent = count;
1174                                 process[i].rw_offset = pos -
1175                                         process[i].rw_last_file_pos;
1176                         }
1177                         if(process[i].rw_smallest_extent > count)
1178                                 process[i].rw_smallest_extent = count;
1179                         if(process[i].rw_largest_extent < count)
1180                                 process[i].rw_largest_extent = count;
1181                         process[i].rw_last_file_pos = pos + count;
1182                         cfs_spin_unlock(&sbi->ll_process_lock);
1183                         return;
1184                 }
1185         }
1186         *process_count = (*process_count + 1) % LL_PROCESS_HIST_MAX;
1187         process[*process_count].rw_pid = pid;
1188         process[*process_count].rw_op = rw;
1189         process[*process_count].rw_range_start = pos;
1190         process[*process_count].rw_last_file_pos = pos + count;
1191         process[*process_count].rw_smallest_extent = count;
1192         process[*process_count].rw_largest_extent = count;
1193         process[*process_count].rw_offset = 0;
1194         process[*process_count].rw_last_file = file;
1195         cfs_spin_unlock(&sbi->ll_process_lock);
1196 }
1197
1198 static int ll_rw_offset_stats_seq_show(struct seq_file *seq, void *v)
1199 {
1200         struct timeval now;
1201         struct ll_sb_info *sbi = seq->private;
1202         struct ll_rw_process_info *offset = sbi->ll_rw_offset_info;
1203         struct ll_rw_process_info *process = sbi->ll_rw_process_info;
1204         int i;
1205
1206         cfs_gettimeofday(&now);
1207
1208         if (!sbi->ll_rw_stats_on) {
1209                 seq_printf(seq, "disabled\n"
1210                                 "write anything in this file to activate, "
1211                                 "then 0 or \"[D/d]isabled\" to deactivate\n");
1212                 return 0;
1213         }
1214         cfs_spin_lock(&sbi->ll_process_lock);
1215
1216         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
1217                    now.tv_sec, now.tv_usec);
1218         seq_printf(seq, "%3s %10s %14s %14s %17s %17s %14s\n",
1219                    "R/W", "PID", "RANGE START", "RANGE END",
1220                    "SMALLEST EXTENT", "LARGEST EXTENT", "OFFSET");
1221         /* We stored the discontiguous offsets here; print them first */
1222         for(i = 0; i < LL_OFFSET_HIST_MAX; i++) {
1223                 if (offset[i].rw_pid != 0)
1224                         seq_printf(seq,"%3c %10d %14Lu %14Lu %17lu %17lu %14Lu",
1225                                    offset[i].rw_op ? 'W' : 'R',
1226                                    offset[i].rw_pid,
1227                                    offset[i].rw_range_start,
1228                                    offset[i].rw_range_end,
1229                                    (unsigned long)offset[i].rw_smallest_extent,
1230                                    (unsigned long)offset[i].rw_largest_extent,
1231                                    offset[i].rw_offset);
1232         }
1233         /* Then print the current offsets for each process */
1234         for(i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1235                 if (process[i].rw_pid != 0)
1236                         seq_printf(seq,"%3c %10d %14Lu %14Lu %17lu %17lu %14Lu",
1237                                    process[i].rw_op ? 'W' : 'R',
1238                                    process[i].rw_pid,
1239                                    process[i].rw_range_start,
1240                                    process[i].rw_last_file_pos,
1241                                    (unsigned long)process[i].rw_smallest_extent,
1242                                    (unsigned long)process[i].rw_largest_extent,
1243                                    process[i].rw_offset);
1244         }
1245         cfs_spin_unlock(&sbi->ll_process_lock);
1246
1247         return 0;
1248 }
1249
1250 static ssize_t ll_rw_offset_stats_seq_write(struct file *file, const char *buf,
1251                                        size_t len, loff_t *off)
1252 {
1253         struct seq_file *seq = file->private_data;
1254         struct ll_sb_info *sbi = seq->private;
1255         struct ll_rw_process_info *process_info = sbi->ll_rw_process_info;
1256         struct ll_rw_process_info *offset_info = sbi->ll_rw_offset_info;
1257         int value = 1, rc = 0;
1258
1259         rc = lprocfs_write_helper(buf, len, &value);
1260
1261         if (rc < 0 && (strcmp(buf, "disabled") == 0 ||
1262                            strcmp(buf, "Disabled") == 0))
1263                 value = 0;
1264
1265         if (value == 0)
1266                 sbi->ll_rw_stats_on = 0;
1267         else
1268                 sbi->ll_rw_stats_on = 1;
1269
1270         cfs_spin_lock(&sbi->ll_process_lock);
1271         sbi->ll_offset_process_count = 0;
1272         sbi->ll_rw_offset_entry_count = 0;
1273         memset(process_info, 0, sizeof(struct ll_rw_process_info) *
1274                LL_PROCESS_HIST_MAX);
1275         memset(offset_info, 0, sizeof(struct ll_rw_process_info) *
1276                LL_OFFSET_HIST_MAX);
1277         cfs_spin_unlock(&sbi->ll_process_lock);
1278
1279         return len;
1280 }
1281
1282 LPROC_SEQ_FOPS(ll_rw_offset_stats);
1283
1284 void lprocfs_llite_init_vars(struct lprocfs_static_vars *lvars)
1285 {
1286     lvars->module_vars  = NULL;
1287     lvars->obd_vars     = lprocfs_llite_obd_vars;
1288 }
1289 #endif /* LPROCFS */