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