Whamcloud - gitweb
962cbd96bb20d8de130b185cb229b27e8f65abdc
[fs/lustre-release.git] / lustre / osc / lproc_osc.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_CLASS
37
38 #include <linux/version.h>
39 #include <asm/statfs.h>
40 #include <obd_cksum.h>
41 #include <obd_class.h>
42 #include <lprocfs_status.h>
43 #include <linux/seq_file.h>
44 #include "osc_internal.h"
45
46 #ifdef LPROCFS
47 static int osc_rd_active(char *page, char **start, off_t off,
48                          int count, int *eof, void *data)
49 {
50         struct obd_device *dev = data;
51         int rc;
52
53         LPROCFS_CLIMP_CHECK(dev);
54         rc = snprintf(page, count, "%d\n", !dev->u.cli.cl_import->imp_deactive);
55         LPROCFS_CLIMP_EXIT(dev);
56         return rc;
57 }
58
59 static int osc_wr_active(struct file *file, const char *buffer,
60                          unsigned long count, void *data)
61 {
62         struct obd_device *dev = data;
63         int val, rc;
64
65         rc = lprocfs_write_helper(buffer, count, &val);
66         if (rc)
67                 return rc;
68         if (val < 0 || val > 1)
69                 return -ERANGE;
70
71         LPROCFS_CLIMP_CHECK(dev);
72         /* opposite senses */
73         if (dev->u.cli.cl_import->imp_deactive == val)
74                 rc = ptlrpc_set_import_active(dev->u.cli.cl_import, val);
75         else
76                 CDEBUG(D_CONFIG, "activate %d: ignoring repeat request\n", val);
77
78         LPROCFS_CLIMP_EXIT(dev);
79         return count;
80 }
81
82 static int osc_rd_max_pages_per_rpc(char *page, char **start, off_t off,
83                                     int count, int *eof, void *data)
84 {
85         struct obd_device *dev = data;
86         struct client_obd *cli = &dev->u.cli;
87         int rc;
88
89         client_obd_list_lock(&cli->cl_loi_list_lock);
90         rc = snprintf(page, count, "%d\n", cli->cl_max_pages_per_rpc);
91         client_obd_list_unlock(&cli->cl_loi_list_lock);
92         return rc;
93 }
94
95 static int osc_wr_max_pages_per_rpc(struct file *file, const char *buffer,
96                                     unsigned long count, void *data)
97 {
98         struct obd_device *dev = data;
99         struct client_obd *cli = &dev->u.cli;
100         struct obd_connect_data *ocd = &cli->cl_import->imp_connect_data;
101         int val, rc;
102
103         rc = lprocfs_write_helper(buffer, count, &val);
104         if (rc)
105                 return rc;
106
107         LPROCFS_CLIMP_CHECK(dev);
108         if (val < 1 || val > ocd->ocd_brw_size >> CFS_PAGE_SHIFT) {
109                 LPROCFS_CLIMP_EXIT(dev);
110                 return -ERANGE;
111         }
112         client_obd_list_lock(&cli->cl_loi_list_lock);
113         cli->cl_max_pages_per_rpc = val;
114         client_obd_list_unlock(&cli->cl_loi_list_lock);
115
116         LPROCFS_CLIMP_EXIT(dev);
117         return count;
118 }
119
120 static int osc_rd_max_rpcs_in_flight(char *page, char **start, off_t off,
121                                      int count, int *eof, void *data)
122 {
123         struct obd_device *dev = data;
124         struct client_obd *cli = &dev->u.cli;
125         int rc;
126
127         client_obd_list_lock(&cli->cl_loi_list_lock);
128         rc = snprintf(page, count, "%u\n", cli->cl_max_rpcs_in_flight);
129         client_obd_list_unlock(&cli->cl_loi_list_lock);
130         return rc;
131 }
132
133 static int osc_wr_max_rpcs_in_flight(struct file *file, const char *buffer,
134                                      unsigned long count, void *data)
135 {
136         struct obd_device *dev = data;
137         struct client_obd *cli = &dev->u.cli;
138         struct ptlrpc_request_pool *pool = cli->cl_import->imp_rq_pool;
139         int val, rc;
140
141         rc = lprocfs_write_helper(buffer, count, &val);
142         if (rc)
143                 return rc;
144
145         if (val < 1 || val > OSC_MAX_RIF_MAX)
146                 return -ERANGE;
147
148         LPROCFS_CLIMP_CHECK(dev);
149         if (pool && val > cli->cl_max_rpcs_in_flight)
150                 pool->prp_populate(pool, val-cli->cl_max_rpcs_in_flight);
151
152         client_obd_list_lock(&cli->cl_loi_list_lock);
153         cli->cl_max_rpcs_in_flight = val;
154         client_obd_list_unlock(&cli->cl_loi_list_lock);
155
156         LPROCFS_CLIMP_EXIT(dev);
157         return count;
158 }
159
160 static int osc_rd_max_dirty_mb(char *page, char **start, off_t off, int count,
161                                int *eof, void *data)
162 {
163         struct obd_device *dev = data;
164         struct client_obd *cli = &dev->u.cli;
165         long val;
166         int mult;
167
168         client_obd_list_lock(&cli->cl_loi_list_lock);
169         val = cli->cl_dirty_max;
170         client_obd_list_unlock(&cli->cl_loi_list_lock);
171
172         mult = 1 << 20;
173         return lprocfs_read_frac_helper(page, count, val, mult);
174 }
175
176 static int osc_wr_max_dirty_mb(struct file *file, const char *buffer,
177                                unsigned long count, void *data)
178 {
179         struct obd_device *dev = data;
180         struct client_obd *cli = &dev->u.cli;
181         int pages_number, mult, rc;
182
183         mult = 1 << (20 - CFS_PAGE_SHIFT);
184         rc = lprocfs_write_frac_helper(buffer, count, &pages_number, mult);
185         if (rc)
186                 return rc;
187
188         if (pages_number < 0 ||
189             pages_number > OSC_MAX_DIRTY_MB_MAX << (20 - CFS_PAGE_SHIFT) ||
190             pages_number > num_physpages / 4) /* 1/4 of RAM */
191                 return -ERANGE;
192
193         client_obd_list_lock(&cli->cl_loi_list_lock);
194         cli->cl_dirty_max = (obd_count)(pages_number << CFS_PAGE_SHIFT);
195         osc_wake_cache_waiters(cli);
196         client_obd_list_unlock(&cli->cl_loi_list_lock);
197
198         return count;
199 }
200
201 static int osc_rd_cur_dirty_bytes(char *page, char **start, off_t off,
202                                   int count, int *eof, void *data)
203 {
204         struct obd_device *dev = data;
205         struct client_obd *cli = &dev->u.cli;
206         int rc;
207
208         client_obd_list_lock(&cli->cl_loi_list_lock);
209         rc = snprintf(page, count, "%lu\n", cli->cl_dirty);
210         client_obd_list_unlock(&cli->cl_loi_list_lock);
211         return rc;
212 }
213
214 static int osc_rd_cur_grant_bytes(char *page, char **start, off_t off,
215                                   int count, int *eof, void *data)
216 {
217         struct obd_device *dev = data;
218         struct client_obd *cli = &dev->u.cli;
219         int rc;
220
221         client_obd_list_lock(&cli->cl_loi_list_lock);
222         rc = snprintf(page, count, "%lu\n", cli->cl_avail_grant);
223         client_obd_list_unlock(&cli->cl_loi_list_lock);
224         return rc;
225 }
226
227 static int osc_wr_cur_grant_bytes(struct file *file, const char *buffer,
228                                   unsigned long count, void *data)
229 {
230         struct obd_device *obd = data;
231         struct client_obd *cli = &obd->u.cli;
232         int                rc;
233         __u64              val;
234
235         if (obd == NULL)
236                 return 0;
237
238         rc = lprocfs_write_u64_helper(buffer, count, &val);
239         if (rc)
240                 return rc;
241
242         /* this is only for shrinking grant */
243         client_obd_list_lock(&cli->cl_loi_list_lock);
244         if (val >= cli->cl_avail_grant) {
245                 client_obd_list_unlock(&cli->cl_loi_list_lock);
246                 return 0;
247         }
248         client_obd_list_unlock(&cli->cl_loi_list_lock);
249
250         LPROCFS_CLIMP_CHECK(obd);
251         if (cli->cl_import->imp_state == LUSTRE_IMP_FULL)
252                 rc = osc_shrink_grant_to_target(cli, val);
253         LPROCFS_CLIMP_EXIT(obd);
254         if (rc)
255                 return rc;
256         return count;
257 }
258
259 static int osc_rd_grant_shrink_interval(char *page, char **start, off_t off,
260                                         int count, int *eof, void *data)
261 {
262         struct obd_device *obd = data;
263
264         if (obd == NULL)
265                 return 0;
266         return snprintf(page, count, "%d\n",
267                         obd->u.cli.cl_grant_shrink_interval);
268 }
269
270 static int osc_wr_grant_shrink_interval(struct file *file, const char *buffer,
271                                         unsigned long count, void *data)
272 {
273         struct obd_device *obd = data;
274         int val, rc;
275
276         if (obd == NULL)
277                 return 0;
278
279         rc = lprocfs_write_helper(buffer, count, &val);
280         if (rc)
281                 return rc;
282
283         if (val <= 0)
284                 return -ERANGE;
285
286         obd->u.cli.cl_grant_shrink_interval = val;
287
288         return count;
289 }
290
291 static int osc_rd_create_count(char *page, char **start, off_t off, int count,
292                                int *eof, void *data)
293 {
294         struct obd_device *obd = data;
295
296         if (obd == NULL)
297                 return 0;
298
299         return snprintf(page, count, "%d\n",
300                         obd->u.cli.cl_oscc.oscc_grow_count);
301 }
302
303 /**
304  * Set OSC creator's osc_creator::oscc_grow_count
305  *
306  * \param file   proc file
307  * \param buffer buffer containing the value
308  * \param count  buffer size
309  * \param data   obd device
310  *
311  * \retval \a count
312  */
313 static int osc_wr_create_count(struct file *file, const char *buffer,
314                                unsigned long count, void *data)
315 {
316         struct obd_device *obd = data;
317         int val, rc, i;
318
319         if (obd == NULL)
320                 return 0;
321
322         rc = lprocfs_write_helper(buffer, count, &val);
323         if (rc)
324                 return rc;
325
326         /* The MDT ALWAYS needs to limit the precreate count to
327          * OST_MAX_PRECREATE, and the constant cannot be changed
328          * because it is a value shared between the OSC and OST
329          * that is the maximum possible number of objects that will
330          * ever be handled by MDT->OST recovery processing.
331          *
332          * If the OST ever gets a request to delete more orphans,
333          * this implies that something has gone badly on the MDT
334          * and the OST will refuse to delete so much data from the
335          * filesystem as a safety measure. */
336         if (val < OST_MIN_PRECREATE || val > OST_MAX_PRECREATE)
337                 return -ERANGE;
338         if (val > obd->u.cli.cl_oscc.oscc_max_grow_count)
339                 return -ERANGE;
340
341         for (i = 1; (i << 1) <= val; i <<= 1)
342                 ;
343         obd->u.cli.cl_oscc.oscc_grow_count = i;
344
345         return count;
346 }
347
348 /**
349  * Read OSC creator's osc_creator::oscc_max_grow_count
350  *
351  * \param page       buffer to hold the returning string
352  * \param start
353  * \param off
354  * \param count
355  * \param eof
356  *              proc read function parameters, please refer to kernel
357  *              code fs/proc/generic.c proc_file_read()
358  * \param data   obd device
359  *
360  * \retval number of characters printed.
361  */
362 static int osc_rd_max_create_count(char *page, char **start, off_t off,
363                                    int count, int *eof, void *data)
364 {
365         struct obd_device *obd = data;
366
367         if (obd == NULL)
368                 return 0;
369
370         return snprintf(page, count, "%d\n",
371                         obd->u.cli.cl_oscc.oscc_max_grow_count);
372 }
373
374 /**
375  * Set OSC creator's osc_creator::oscc_max_grow_count
376  *
377  * \param file   proc file
378  * \param buffer buffer containing the value
379  * \param count  buffer size
380  * \param data   obd device
381  *
382  * \retval \a count
383  */
384 static int osc_wr_max_create_count(struct file *file, const char *buffer,
385                                    unsigned long count, void *data)
386 {
387         struct obd_device *obd = data;
388         int val, rc;
389
390         if (obd == NULL)
391                 return 0;
392
393         rc = lprocfs_write_helper(buffer, count, &val);
394         if (rc)
395                 return rc;
396
397         if (val < 0)
398                 return -ERANGE;
399         if (val > OST_MAX_PRECREATE)
400                 return -ERANGE;
401
402         if (obd->u.cli.cl_oscc.oscc_grow_count > val)
403                 obd->u.cli.cl_oscc.oscc_grow_count = val;
404
405         obd->u.cli.cl_oscc.oscc_max_grow_count = val;
406
407         return count;
408 }
409
410 static int osc_rd_prealloc_next_id(char *page, char **start, off_t off,
411                                    int count, int *eof, void *data)
412 {
413         struct obd_device *obd = data;
414
415         if (obd == NULL)
416                 return 0;
417
418         return snprintf(page, count, LPU64"\n",
419                         obd->u.cli.cl_oscc.oscc_next_id);
420 }
421
422 static int osc_rd_prealloc_last_id(char *page, char **start, off_t off,
423                                    int count, int *eof, void *data)
424 {
425         struct obd_device *obd = data;
426
427         if (obd == NULL)
428                 return 0;
429
430         return snprintf(page, count, LPU64"\n",
431                         obd->u.cli.cl_oscc.oscc_last_id);
432 }
433
434 static int osc_rd_checksum(char *page, char **start, off_t off, int count,
435                            int *eof, void *data)
436 {
437         struct obd_device *obd = data;
438
439         if (obd == NULL)
440                 return 0;
441
442         return snprintf(page, count, "%d\n",
443                         obd->u.cli.cl_checksum ? 1 : 0);
444 }
445
446 static int osc_wr_checksum(struct file *file, const char *buffer,
447                            unsigned long count, void *data)
448 {
449         struct obd_device *obd = data;
450         int val, rc;
451
452         if (obd == NULL)
453                 return 0;
454
455         rc = lprocfs_write_helper(buffer, count, &val);
456         if (rc)
457                 return rc;
458
459         obd->u.cli.cl_checksum = (val ? 1 : 0);
460
461         return count;
462 }
463
464 static int osc_rd_checksum_type(char *page, char **start, off_t off, int count,
465                                 int *eof, void *data)
466 {
467         struct obd_device *obd = data;
468         int i, len =0;
469         DECLARE_CKSUM_NAME;
470
471         if (obd == NULL)
472                 return 0;
473
474         for (i = 0; i < ARRAY_SIZE(cksum_name) && len < count; i++) {
475                 if (((1 << i) & obd->u.cli.cl_supp_cksum_types) == 0)
476                         continue;
477                 if (obd->u.cli.cl_cksum_type == (1 << i))
478                         len += snprintf(page + len, count - len, "[%s] ",
479                                         cksum_name[i]);
480                 else
481                         len += snprintf(page + len, count - len, "%s ",
482                                         cksum_name[i]);
483         }
484         if (len < count)
485                 len += sprintf(page + len, "\n");
486         return len;
487 }
488
489 static int osc_wd_checksum_type(struct file *file, const char *buffer,
490                                 unsigned long count, void *data)
491 {
492         struct obd_device *obd = data;
493         int i;
494         DECLARE_CKSUM_NAME;
495         char kernbuf[10];
496
497         if (obd == NULL)
498                 return 0;
499
500         if (count > sizeof(kernbuf) - 1)
501                 return -EINVAL;
502         if (copy_from_user(kernbuf, buffer, count))
503                 return -EFAULT;
504         if (count > 0 && kernbuf[count - 1] == '\n')
505                 kernbuf[count - 1] = '\0';
506         else
507                 kernbuf[count] = '\0';
508
509         for (i = 0; i < ARRAY_SIZE(cksum_name); i++) {
510                 if (((1 << i) & obd->u.cli.cl_supp_cksum_types) == 0)
511                         continue;
512                 if (!strcmp(kernbuf, cksum_name[i])) {
513                        obd->u.cli.cl_cksum_type = 1 << i;
514                        return count;
515                 }
516         }
517         return -EINVAL;
518 }
519
520 static int osc_rd_resend_count(char *page, char **start, off_t off, int count,
521                                int *eof, void *data)
522 {
523         struct obd_device *obd = data;
524
525         return snprintf(page, count, "%u\n", atomic_read(&obd->u.cli.cl_resends));
526 }
527
528 static int osc_wr_resend_count(struct file *file, const char *buffer,
529                                unsigned long count, void *data)
530 {
531         struct obd_device *obd = data;
532         int val, rc;
533
534         rc = lprocfs_write_helper(buffer, count, &val);
535         if (rc)
536                 return rc;
537
538         if (val < 0)
539                return -EINVAL;
540
541         atomic_set(&obd->u.cli.cl_resends, val);
542
543         return count;
544 }
545
546 static int osc_rd_contention_seconds(char *page, char **start, off_t off,
547                                      int count, int *eof, void *data)
548 {
549         struct obd_device *obd = data;
550         struct osc_device *od  = obd2osc_dev(obd);
551
552         return snprintf(page, count, "%u\n", od->od_contention_time);
553 }
554
555 static int osc_wr_contention_seconds(struct file *file, const char *buffer,
556                                      unsigned long count, void *data)
557 {
558         struct obd_device *obd = data;
559         struct osc_device *od  = obd2osc_dev(obd);
560
561         return lprocfs_write_helper(buffer, count, &od->od_contention_time) ?:
562                 count;
563 }
564
565 static int osc_rd_lockless_truncate(char *page, char **start, off_t off,
566                                     int count, int *eof, void *data)
567 {
568         struct obd_device *obd = data;
569         struct osc_device *od  = obd2osc_dev(obd);
570
571         return snprintf(page, count, "%u\n", od->od_lockless_truncate);
572 }
573
574 static int osc_wr_lockless_truncate(struct file *file, const char *buffer,
575                                     unsigned long count, void *data)
576 {
577         struct obd_device *obd = data;
578         struct osc_device *od  = obd2osc_dev(obd);
579
580         return lprocfs_write_helper(buffer, count, &od->od_lockless_truncate) ?:
581                 count;
582 }
583
584 static struct lprocfs_vars lprocfs_osc_obd_vars[] = {
585         { "uuid",            lprocfs_rd_uuid,        0, 0 },
586         { "ping",            0, lprocfs_wr_ping,     0, 0, 0222 },
587         { "connect_flags",   lprocfs_rd_connect_flags, 0, 0 },
588         { "blocksize",       lprocfs_rd_blksize,     0, 0 },
589         { "kbytestotal",     lprocfs_rd_kbytestotal, 0, 0 },
590         { "kbytesfree",      lprocfs_rd_kbytesfree,  0, 0 },
591         { "kbytesavail",     lprocfs_rd_kbytesavail, 0, 0 },
592         { "filestotal",      lprocfs_rd_filestotal,  0, 0 },
593         { "filesfree",       lprocfs_rd_filesfree,   0, 0 },
594         //{ "filegroups",      lprocfs_rd_filegroups,  0, 0 },
595         { "ost_server_uuid", lprocfs_rd_server_uuid, 0, 0 },
596         { "ost_conn_uuid",   lprocfs_rd_conn_uuid, 0, 0 },
597         { "active",          osc_rd_active,
598                              osc_wr_active, 0 },
599         { "max_pages_per_rpc", osc_rd_max_pages_per_rpc,
600                                osc_wr_max_pages_per_rpc, 0 },
601         { "max_rpcs_in_flight", osc_rd_max_rpcs_in_flight,
602                                 osc_wr_max_rpcs_in_flight, 0 },
603         { "max_dirty_mb",    osc_rd_max_dirty_mb, osc_wr_max_dirty_mb, 0 },
604         { "cur_dirty_bytes", osc_rd_cur_dirty_bytes, 0, 0 },
605         { "cur_grant_bytes", osc_rd_cur_grant_bytes,
606                              osc_wr_cur_grant_bytes, 0 },
607         { "grant_shrink_interval", osc_rd_grant_shrink_interval,
608                                    osc_wr_grant_shrink_interval, 0 },
609         { "create_count",    osc_rd_create_count, osc_wr_create_count, 0 },
610         { "max_create_count", osc_rd_max_create_count,
611                               osc_wr_max_create_count, 0},
612         { "prealloc_next_id", osc_rd_prealloc_next_id, 0, 0 },
613         { "prealloc_last_id", osc_rd_prealloc_last_id, 0, 0 },
614         { "checksums",       osc_rd_checksum, osc_wr_checksum, 0 },
615         { "checksum_type",   osc_rd_checksum_type, osc_wd_checksum_type, 0 },
616         { "resend_count",    osc_rd_resend_count, osc_wr_resend_count, 0},
617         { "timeouts",        lprocfs_rd_timeouts,      0, 0 },
618         { "contention_seconds", osc_rd_contention_seconds,
619                                 osc_wr_contention_seconds, 0 },
620         { "lockless_truncate",  osc_rd_lockless_truncate,
621                                 osc_wr_lockless_truncate, 0 },
622         { "import",          lprocfs_rd_import,        0, 0 },
623         { "state",           lprocfs_rd_state,         0, 0 },
624         { 0 }
625 };
626
627 static struct lprocfs_vars lprocfs_osc_module_vars[] = {
628         { "num_refs",        lprocfs_rd_numrefs,     0, 0 },
629         { 0 }
630 };
631
632 #define pct(a,b) (b ? a * 100 / b : 0)
633
634 static int osc_rpc_stats_seq_show(struct seq_file *seq, void *v)
635 {
636         struct timeval now;
637         struct obd_device *dev = seq->private;
638         struct client_obd *cli = &dev->u.cli;
639         unsigned long read_tot = 0, write_tot = 0, read_cum, write_cum;
640         int i;
641
642         do_gettimeofday(&now);
643
644         client_obd_list_lock(&cli->cl_loi_list_lock);
645
646         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
647                    now.tv_sec, now.tv_usec);
648         seq_printf(seq, "read RPCs in flight:  %d\n",
649                    cli->cl_r_in_flight);
650         seq_printf(seq, "write RPCs in flight: %d\n",
651                    cli->cl_w_in_flight);
652         seq_printf(seq, "pending write pages:  %d\n",
653                    cli->cl_pending_w_pages);
654         seq_printf(seq, "pending read pages:   %d\n",
655                    cli->cl_pending_r_pages);
656
657         seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
658         seq_printf(seq, "pages per rpc         rpcs   %% cum %% |");
659         seq_printf(seq, "       rpcs   %% cum %%\n");
660
661         read_tot = lprocfs_oh_sum(&cli->cl_read_page_hist);
662         write_tot = lprocfs_oh_sum(&cli->cl_write_page_hist);
663
664         read_cum = 0;
665         write_cum = 0;
666         for (i = 0; i < OBD_HIST_MAX; i++) {
667                 unsigned long r = cli->cl_read_page_hist.oh_buckets[i];
668                 unsigned long w = cli->cl_write_page_hist.oh_buckets[i];
669                 read_cum += r;
670                 write_cum += w;
671                 seq_printf(seq, "%d:\t\t%10lu %3lu %3lu   | %10lu %3lu %3lu\n",
672                                  1 << i, r, pct(r, read_tot),
673                                  pct(read_cum, read_tot), w,
674                                  pct(w, write_tot),
675                                  pct(write_cum, write_tot));
676                 if (read_cum == read_tot && write_cum == write_tot)
677                         break;
678         }
679
680         seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
681         seq_printf(seq, "rpcs in flight        rpcs   %% cum %% |");
682         seq_printf(seq, "       rpcs   %% cum %%\n");
683
684         read_tot = lprocfs_oh_sum(&cli->cl_read_rpc_hist);
685         write_tot = lprocfs_oh_sum(&cli->cl_write_rpc_hist);
686
687         read_cum = 0;
688         write_cum = 0;
689         for (i = 0; i < OBD_HIST_MAX; i++) {
690                 unsigned long r = cli->cl_read_rpc_hist.oh_buckets[i];
691                 unsigned long w = cli->cl_write_rpc_hist.oh_buckets[i];
692                 read_cum += r;
693                 write_cum += w;
694                 seq_printf(seq, "%d:\t\t%10lu %3lu %3lu   | %10lu %3lu %3lu\n",
695                                  i, r, pct(r, read_tot),
696                                  pct(read_cum, read_tot), w,
697                                  pct(w, write_tot),
698                                  pct(write_cum, write_tot));
699                 if (read_cum == read_tot && write_cum == write_tot)
700                         break;
701         }
702
703         seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
704         seq_printf(seq, "offset                rpcs   %% cum %% |");
705         seq_printf(seq, "       rpcs   %% cum %%\n");
706
707         read_tot = lprocfs_oh_sum(&cli->cl_read_offset_hist);
708         write_tot = lprocfs_oh_sum(&cli->cl_write_offset_hist);
709
710         read_cum = 0;
711         write_cum = 0;
712         for (i = 0; i < OBD_HIST_MAX; i++) {
713                 unsigned long r = cli->cl_read_offset_hist.oh_buckets[i];
714                 unsigned long w = cli->cl_write_offset_hist.oh_buckets[i];
715                 read_cum += r;
716                 write_cum += w;
717                 seq_printf(seq, "%d:\t\t%10lu %3lu %3lu   | %10lu %3lu %3lu\n",
718                            (i == 0) ? 0 : 1 << (i - 1),
719                            r, pct(r, read_tot), pct(read_cum, read_tot),
720                            w, pct(w, write_tot), pct(write_cum, write_tot));
721                 if (read_cum == read_tot && write_cum == write_tot)
722                         break;
723         }
724
725         client_obd_list_unlock(&cli->cl_loi_list_lock);
726
727         return 0;
728 }
729 #undef pct
730
731 static ssize_t osc_rpc_stats_seq_write(struct file *file, const char *buf,
732                                        size_t len, loff_t *off)
733 {
734         struct seq_file *seq = file->private_data;
735         struct obd_device *dev = seq->private;
736         struct client_obd *cli = &dev->u.cli;
737
738         lprocfs_oh_clear(&cli->cl_read_rpc_hist);
739         lprocfs_oh_clear(&cli->cl_write_rpc_hist);
740         lprocfs_oh_clear(&cli->cl_read_page_hist);
741         lprocfs_oh_clear(&cli->cl_write_page_hist);
742         lprocfs_oh_clear(&cli->cl_read_offset_hist);
743         lprocfs_oh_clear(&cli->cl_write_offset_hist);
744
745         return len;
746 }
747
748 LPROC_SEQ_FOPS(osc_rpc_stats);
749
750 static int osc_stats_seq_show(struct seq_file *seq, void *v)
751 {
752         struct timeval now;
753         struct obd_device *dev = seq->private;
754         struct osc_stats *stats = &obd2osc_dev(dev)->od_stats;
755
756         do_gettimeofday(&now);
757
758         seq_printf(seq, "snapshot_time:         %lu.%lu (secs.usecs)\n",
759                    now.tv_sec, now.tv_usec);
760         seq_printf(seq, "lockless_write_bytes\t\t"LPU64"\n",
761                    stats->os_lockless_writes);
762         seq_printf(seq, "lockless_read_bytes\t\t"LPU64"\n",
763                    stats->os_lockless_reads);
764         seq_printf(seq, "lockless_truncate\t\t"LPU64"\n",
765                    stats->os_lockless_truncates);
766         return 0;
767 }
768
769 static ssize_t osc_stats_seq_write(struct file *file, const char *buf,
770                                    size_t len, loff_t *off)
771 {
772         struct seq_file *seq = file->private_data;
773         struct obd_device *dev = seq->private;
774         struct osc_stats *stats = &obd2osc_dev(dev)->od_stats;
775
776         memset(stats, 0, sizeof(*stats));
777         return len;
778 }
779
780 LPROC_SEQ_FOPS(osc_stats);
781
782 int lproc_osc_attach_seqstat(struct obd_device *dev)
783 {
784         int rc;
785
786         rc = lprocfs_seq_create(dev->obd_proc_entry, "osc_stats", 0444,
787                                 &osc_stats_fops, dev);
788         if (rc == 0)
789                 rc = lprocfs_obd_seq_create(dev, "rpc_stats", 0444,
790                                             &osc_rpc_stats_fops, dev);
791         return rc;
792 }
793
794 void lprocfs_osc_init_vars(struct lprocfs_static_vars *lvars)
795 {
796         lvars->module_vars = lprocfs_osc_module_vars;
797         lvars->obd_vars    = lprocfs_osc_obd_vars;
798 }
799 #endif /* LPROCFS */