Whamcloud - gitweb
LU-3105 osd: remove capa related stuff from servers
[fs/lustre-release.git] / lustre / ofd / lproc_ofd.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.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2014 Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/ofd/lproc_ofd.c
33  *
34  * This file provides functions of procfs interface for OBD Filter Device (OFD).
35  *
36  * Author: Andreas Dilger <andreas.dilger@intel.com>
37  * Author: Mikhail Pershin <mike.pershin@intel.com>
38  * Author: Johann Lombardi <johann.lombardi@intel.com>
39  * Author: Fan Yong <fan.yong@intel.com>
40  */
41
42 #define DEBUG_SUBSYSTEM S_CLASS
43
44 #include <obd.h>
45 #include <lprocfs_status.h>
46 #include <linux/seq_file.h>
47 #include <lustre_lfsck.h>
48
49 #include "ofd_internal.h"
50
51 #ifdef CONFIG_PROC_FS
52
53 /**
54  * Show number of FID allocation sequences.
55  *
56  * \param[in] m         seq_file handle
57  * \param[in] data      unused for single entry
58  *
59  * \retval              0 on success
60  * \retval              negative value on error
61  */
62 static int ofd_seqs_seq_show(struct seq_file *m, void *data)
63 {
64         struct obd_device *obd = m->private;
65         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
66
67         return seq_printf(m, "%u\n", ofd->ofd_seq_count);
68 }
69 LPROC_SEQ_FOPS_RO(ofd_seqs);
70
71 /**
72  * Show estimate of total amount of dirty data on clients.
73  *
74  * \param[in] m         seq_file handle
75  * \param[in] data      unused for single entry
76  *
77  * \retval              0 on success
78  * \retval              negative value on error
79  */
80 static int ofd_tot_dirty_seq_show(struct seq_file *m, void *data)
81 {
82         struct obd_device *obd = m->private;
83         struct ofd_device *ofd;
84
85         LASSERT(obd != NULL);
86         ofd = ofd_dev(obd->obd_lu_dev);
87         return seq_printf(m, LPU64"\n", ofd->ofd_tot_dirty);
88 }
89 LPROC_SEQ_FOPS_RO(ofd_tot_dirty);
90
91 /**
92  * Show total amount of space granted to clients.
93  *
94  * \param[in] m         seq_file handle
95  * \param[in] data      unused for single entry
96  *
97  * \retval              0 on success
98  * \retval              negative value on error
99  */
100 static int ofd_tot_granted_seq_show(struct seq_file *m, void *data)
101 {
102         struct obd_device *obd = m->private;
103         struct ofd_device *ofd;
104
105         LASSERT(obd != NULL);
106         ofd = ofd_dev(obd->obd_lu_dev);
107         return seq_printf(m, LPU64"\n", ofd->ofd_tot_granted);
108 }
109 LPROC_SEQ_FOPS_RO(ofd_tot_granted);
110
111 /**
112  * Show total amount of space used by IO in progress.
113  *
114  * \param[in] m         seq_file handle
115  * \param[in] data      unused for single entry
116  *
117  * \retval              0 on success
118  * \retval              negative value on error
119  */
120 static int ofd_tot_pending_seq_show(struct seq_file *m, void *data)
121 {
122         struct obd_device *obd = m->private;
123         struct ofd_device *ofd;
124
125         LASSERT(obd != NULL);
126         ofd = ofd_dev(obd->obd_lu_dev);
127         return seq_printf(m, LPU64"\n", ofd->ofd_tot_pending);
128 }
129 LPROC_SEQ_FOPS_RO(ofd_tot_pending);
130
131 /**
132  * Show total number of grants for precreate.
133  *
134  * \param[in] m         seq_file handle
135  * \param[in] data      unused for single entry
136  *
137  * \retval              0 on success
138  * \retval              negative value on error
139  */
140 static int ofd_grant_precreate_seq_show(struct seq_file *m, void *data)
141 {
142         struct obd_device *obd = m->private;
143
144         LASSERT(obd != NULL);
145         return seq_printf(m, "%ld\n",
146                           obd->obd_self_export->exp_filter_data.fed_grant);
147 }
148 LPROC_SEQ_FOPS_RO(ofd_grant_precreate);
149
150 /**
151  * Show total amount of free space reserved for grants.
152  *
153  * \param[in] m         seq_file handle
154  * \param[in] data      unused for single entry
155  *
156  * \retval              0 on success
157  * \retval              negative value on error
158  */
159 static int ofd_grant_ratio_seq_show(struct seq_file *m, void *data)
160 {
161         struct obd_device *obd = m->private;
162         struct ofd_device *ofd;
163
164         LASSERT(obd != NULL);
165         ofd = ofd_dev(obd->obd_lu_dev);
166         return seq_printf(m, "%d%%\n",
167                           (int) ofd_grant_reserved(ofd, 100));
168 }
169
170 /**
171  * Change amount of free space reserved for grants.
172  *
173  * \param[in] file      proc file
174  * \param[in] buffer    string which represents maximum number
175  * \param[in] count     \a buffer length
176  * \param[in] off       unused for single entry
177  *
178  * \retval              \a count on success
179  * \retval              negative number on error
180  */
181 static ssize_t
182 ofd_grant_ratio_seq_write(struct file *file, const char __user *buffer,
183                           size_t count, loff_t *off)
184 {
185         struct seq_file         *m = file->private_data;
186         struct obd_device       *obd = m->private;
187         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
188         int                      val;
189         int                      rc;
190
191         rc = lprocfs_write_helper(buffer, count, &val);
192         if (rc)
193                 return rc;
194
195         if (val > 100 || val < 0)
196                 return -EINVAL;
197
198         if (val == 0)
199                 CWARN("%s: disabling grant error margin\n", obd->obd_name);
200         if (val > 50)
201                 CWARN("%s: setting grant error margin >50%%, be warned that "
202                       "a huge part of the free space is now reserved for "
203                       "grants\n", obd->obd_name);
204
205         spin_lock(&ofd->ofd_grant_lock);
206         ofd->ofd_grant_ratio = ofd_grant_ratio_conv(val);
207         spin_unlock(&ofd->ofd_grant_lock);
208         return count;
209 }
210 LPROC_SEQ_FOPS(ofd_grant_ratio);
211
212 /**
213  * Show number of precreates allowed in a single transaction.
214  *
215  * \param[in] m         seq_file handle
216  * \param[in] data      unused for single entry
217  *
218  * \retval              0 on success
219  * \retval              negative value on error
220  */
221 static int ofd_precreate_batch_seq_show(struct seq_file *m, void *data)
222 {
223         struct obd_device *obd = m->private;
224         struct ofd_device *ofd;
225
226         LASSERT(obd != NULL);
227         ofd = ofd_dev(obd->obd_lu_dev);
228         return seq_printf(m, "%d\n", ofd->ofd_precreate_batch);
229 }
230
231 /**
232  * Change number of precreates allowed in a single transaction.
233  *
234  * \param[in] file      proc file
235  * \param[in] buffer    string which represents maximum number
236  * \param[in] count     \a buffer length
237  * \param[in] off       unused for single entry
238  *
239  * \retval              \a count on success
240  * \retval              negative number on error
241  */
242 static ssize_t
243 ofd_precreate_batch_seq_write(struct file *file, const char __user *buffer,
244                               size_t count, loff_t *off)
245 {
246         struct seq_file   *m = file->private_data;
247         struct obd_device *obd = m->private;
248         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
249         int val;
250         int rc;
251
252         rc = lprocfs_write_helper(buffer, count, &val);
253         if (rc)
254                 return rc;
255
256         if (val < 1)
257                 return -EINVAL;
258
259         spin_lock(&ofd->ofd_batch_lock);
260         ofd->ofd_precreate_batch = val;
261         spin_unlock(&ofd->ofd_batch_lock);
262         return count;
263 }
264 LPROC_SEQ_FOPS(ofd_precreate_batch);
265
266 /**
267  * Show the last used ID for each FID sequence used by OFD.
268  *
269  * \param[in] m         seq_file handle
270  * \param[in] data      unused for single entry
271  *
272  * \retval              0 on success
273  * \retval              negative value on error
274  */
275 static int ofd_last_id_seq_show(struct seq_file *m, void *data)
276 {
277         struct obd_device       *obd = m->private;
278         struct ofd_device       *ofd;
279         struct ofd_seq          *oseq = NULL;
280         int                     retval = 0, rc;
281
282         if (obd == NULL)
283                 return 0;
284
285         ofd = ofd_dev(obd->obd_lu_dev);
286
287         read_lock(&ofd->ofd_seq_list_lock);
288         list_for_each_entry(oseq, &ofd->ofd_seq_list, os_list) {
289                 __u64 seq;
290
291                 seq = ostid_seq(&oseq->os_oi) == 0 ?
292                       fid_idif_seq(ostid_id(&oseq->os_oi),
293                                    ofd->ofd_lut.lut_lsd.lsd_osd_index) :
294                       ostid_seq(&oseq->os_oi);
295                 rc = seq_printf(m, DOSTID"\n", seq, ostid_id(&oseq->os_oi));
296                 if (rc < 0) {
297                         retval = rc;
298                         break;
299                 }
300                 retval += rc;
301         }
302         read_unlock(&ofd->ofd_seq_list_lock);
303         return retval;
304 }
305 LPROC_SEQ_FOPS_RO(ofd_last_id);
306
307 /**
308  * Show maximum number of Filter Modification Data (FMD) maintained by OFD.
309  *
310  * \param[in] m         seq_file handle
311  * \param[in] data      unused for single entry
312  *
313  * \retval              0 on success
314  * \retval              negative value on error
315  */
316 static int ofd_fmd_max_num_seq_show(struct seq_file *m, void *data)
317 {
318         struct obd_device *obd = m->private;
319         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
320
321         return seq_printf(m, "%u\n", ofd->ofd_fmd_max_num);
322 }
323
324 /**
325  * Change number of FMDs maintained by OFD.
326  *
327  * This defines how large the list of FMDs can be.
328  *
329  * \param[in] file      proc file
330  * \param[in] buffer    string which represents maximum number
331  * \param[in] count     \a buffer length
332  * \param[in] off       unused for single entry
333  *
334  * \retval              \a count on success
335  * \retval              negative number on error
336  */
337 static ssize_t
338 ofd_fmd_max_num_seq_write(struct file *file, const char __user *buffer,
339                           size_t count, loff_t *off)
340 {
341         struct seq_file         *m = file->private_data;
342         struct obd_device       *obd = m->private;
343         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
344         int                      val;
345         int                      rc;
346
347         rc = lprocfs_write_helper(buffer, count, &val);
348         if (rc)
349                 return rc;
350
351         if (val > 65536 || val < 1)
352                 return -EINVAL;
353
354         ofd->ofd_fmd_max_num = val;
355         return count;
356 }
357 LPROC_SEQ_FOPS(ofd_fmd_max_num);
358
359 /**
360  * Show the maximum age of FMD data in seconds.
361  *
362  * Though it is shown in seconds, it is stored internally in units
363  * of jiffies for efficiency.
364  *
365  * \param[in] m         seq_file handle
366  * \param[in] data      unused for single entry
367  *
368  * \retval              0 on success
369  * \retval              negative value on error
370  */
371 static int ofd_fmd_max_age_seq_show(struct seq_file *m, void *data)
372 {
373         struct obd_device *obd = m->private;
374         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
375
376         return seq_printf(m, "%ld\n", jiffies_to_msecs(ofd->ofd_fmd_max_age) /
377                                       MSEC_PER_SEC);
378 }
379
380 /**
381  * Set the maximum age of FMD data in seconds.
382  *
383  * This defines how long FMD data stays in the FMD list.
384  * It is stored internally in units of jiffies for efficiency.
385  *
386  * \param[in] file      proc file
387  * \param[in] buffer    string which represents maximum number
388  * \param[in] count     \a buffer length
389  * \param[in] off       unused for single entry
390  *
391  * \retval              \a count on success
392  * \retval              negative number on error
393  */
394 static ssize_t
395 ofd_fmd_max_age_seq_write(struct file *file, const char __user *buffer,
396                           size_t count, loff_t *off)
397 {
398         struct seq_file         *m = file->private_data;
399         struct obd_device       *obd = m->private;
400         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
401         int                      val;
402         int                      rc;
403
404         rc = lprocfs_write_helper(buffer, count, &val);
405         if (rc)
406                 return rc;
407
408         if (val > 65536 || val < 1)
409                 return -EINVAL;
410
411         ofd->ofd_fmd_max_age = msecs_to_jiffies(val * MSEC_PER_SEC);
412         return count;
413 }
414 LPROC_SEQ_FOPS(ofd_fmd_max_age);
415
416 /**
417  * Show if the OFD is in degraded mode.
418  *
419  * Degraded means OFD has a failed drive or is undergoing RAID rebuild.
420  * The MDS will try to avoid using this OST for new object allocations
421  * to reduce the impact to global IO performance when clients writing to
422  * this OST are slowed down.  It also reduces the contention on the OST
423  * RAID device, allowing it to rebuild more quickly.
424  *
425  * \param[in] m         seq_file handle
426  * \param[in] data      unused for single entry
427  *
428  * \retval              0 on success
429  * \retval              negative value on error
430  */
431 static int ofd_degraded_seq_show(struct seq_file *m, void *data)
432 {
433         struct obd_device *obd = m->private;
434         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
435
436         return seq_printf(m, "%u\n", ofd->ofd_raid_degraded);
437 }
438
439 /**
440  * Set OFD to degraded mode.
441  *
442  * This is used to interface to userspace administrative tools for
443  * the underlying RAID storage, so that they can mark an OST
444  * as having degraded performance.
445  *
446  * \param[in] file      proc file
447  * \param[in] buffer    string which represents mode
448  *                      1: set degraded mode
449  *                      0: unset degraded mode
450  * \param[in] count     \a buffer length
451  * \param[in] off       unused for single entry
452  *
453  * \retval              \a count on success
454  * \retval              negative number on error
455  */
456 static ssize_t
457 ofd_degraded_seq_write(struct file *file, const char __user *buffer,
458                        size_t count, loff_t *off)
459 {
460         struct seq_file         *m = file->private_data;
461         struct obd_device       *obd = m->private;
462         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
463         int                      val, rc;
464
465         rc = lprocfs_write_helper(buffer, count, &val);
466         if (rc)
467                 return rc;
468
469         spin_lock(&ofd->ofd_flags_lock);
470         ofd->ofd_raid_degraded = !!val;
471         spin_unlock(&ofd->ofd_flags_lock);
472         return count;
473 }
474 LPROC_SEQ_FOPS(ofd_degraded);
475
476 /**
477  * Show OFD filesystem type.
478  *
479  * \param[in] m         seq_file handle
480  * \param[in] data      unused for single entry
481  *
482  * \retval              0 on success
483  * \retval              negative value on error
484  */
485 static int ofd_fstype_seq_show(struct seq_file *m, void *data)
486 {
487         struct obd_device *obd = m->private;
488         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
489         struct lu_device  *d;
490
491         LASSERT(ofd->ofd_osd);
492         d = &ofd->ofd_osd->dd_lu_dev;
493         LASSERT(d->ld_type);
494         return seq_printf(m, "%s\n", d->ld_type->ldt_name);
495 }
496 LPROC_SEQ_FOPS_RO(ofd_fstype);
497
498 /**
499  * Show journal handling mode: synchronous or asynchronous.
500  *
501  * When running in asynchronous mode the journal transactions are not
502  * committed to disk before the RPC is replied back to the client.
503  * This will typically improve client performance when only a small number
504  * of clients are writing, since the client(s) can have more write RPCs
505  * in flight. However, it also means that the client has to handle recovery
506  * on bulk RPCs, and will have to keep more dirty pages in cache before they
507  * are committed on the OST.
508  *
509  * \param[in] m         seq_file handle
510  * \param[in] data      unused for single entry
511  *
512  * \retval              0 on success
513  * \retval              negative value on error
514  */
515 static int ofd_syncjournal_seq_show(struct seq_file *m, void *data)
516 {
517         struct obd_device       *obd = m->private;
518         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
519
520         return seq_printf(m, "%u\n", ofd->ofd_syncjournal);
521 }
522
523 /**
524  * Set journal mode to synchronous or asynchronous.
525  *
526  * \param[in] file      proc file
527  * \param[in] buffer    string which represents mode
528  *                      1: synchronous mode
529  *                      0: asynchronous mode
530  * \param[in] count     \a buffer length
531  * \param[in] off       unused for single entry
532  *
533  * \retval              \a count on success
534  * \retval              negative number on error
535  */
536 static ssize_t
537 ofd_syncjournal_seq_write(struct file *file, const char __user *buffer,
538                           size_t count, loff_t *off)
539 {
540         struct seq_file         *m = file->private_data;
541         struct obd_device       *obd = m->private;
542         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
543         int                      val;
544         int                      rc;
545
546         rc = lprocfs_write_helper(buffer, count, &val);
547         if (rc)
548                 return rc;
549
550         if (val < 0)
551                 return -EINVAL;
552
553         spin_lock(&ofd->ofd_flags_lock);
554         ofd->ofd_syncjournal = !!val;
555         ofd_slc_set(ofd);
556         spin_unlock(&ofd->ofd_flags_lock);
557
558         return count;
559 }
560 LPROC_SEQ_FOPS(ofd_syncjournal);
561
562 /* This must be longer than the longest string below */
563 #define SYNC_STATES_MAXLEN 16
564 static char *sync_on_cancel_states[] = {"never",
565                                         "blocking",
566                                         "always" };
567
568 /**
569  * Show OFD policy for handling dirty data under a lock being cancelled.
570  *
571  * \param[in] m         seq_file handle
572  * \param[in] data      unused for single entry
573  *
574  * \retval              0 on success
575  * \retval              negative value on error
576  */
577 static int ofd_sync_lock_cancel_seq_show(struct seq_file *m, void *data)
578 {
579         struct obd_device       *obd = m->private;
580         struct lu_target        *tgt = obd->u.obt.obt_lut;
581
582         return seq_printf(m, "%s\n",
583                           sync_on_cancel_states[tgt->lut_sync_lock_cancel]);
584 }
585
586 /**
587  * Change OFD policy for handling dirty data under a lock being cancelled.
588  *
589  * This variable defines what action OFD takes upon lock cancel
590  * There are three possible modes:
591  * 1) never - never do sync upon lock cancel. This can lead to data
592  *    inconsistencies if both the OST and client crash while writing a file
593  *    that is also concurrently being read by another client. In these cases,
594  *    this may allow the file data to "rewind" to an earlier state.
595  * 2) blocking - do sync only if there is blocking lock, e.g. if another
596  *    client is trying to access this same object
597  * 3) always - do sync always
598  *
599  * \param[in] file      proc file
600  * \param[in] buffer    string which represents policy
601  * \param[in] count     \a buffer length
602  * \param[in] off       unused for single entry
603  *
604  * \retval              \a count on success
605  * \retval              negative number on error
606  */
607 static ssize_t
608 ofd_sync_lock_cancel_seq_write(struct file *file, const char __user *buffer,
609                                size_t count, loff_t *off)
610 {
611         struct seq_file         *m = file->private_data;
612         struct obd_device       *obd = m->private;
613         struct lu_target        *tgt = obd->u.obt.obt_lut;
614         char                     kernbuf[SYNC_STATES_MAXLEN];
615         int                      val = -1;
616         int                      i;
617
618         if (count == 0 || count >= sizeof(kernbuf))
619                 return -EINVAL;
620
621         if (copy_from_user(kernbuf, buffer, count))
622                 return -EFAULT;
623         kernbuf[count] = 0;
624
625         if (kernbuf[count - 1] == '\n')
626                 kernbuf[count - 1] = 0;
627
628         for (i = 0 ; i < NUM_SYNC_ON_CANCEL_STATES; i++) {
629                 if (strcmp(kernbuf, sync_on_cancel_states[i]) == 0) {
630                         val = i;
631                         break;
632                 }
633         }
634
635         /* Legacy numeric codes */
636         if (val == -1) {
637                 int rc;
638
639                 /* Safe to use userspace buffer as lprocfs_write_helper will
640                  * use copy from user for parsing */
641                 rc = lprocfs_write_helper(buffer, count, &val);
642                 if (rc)
643                         return rc;
644         }
645
646         if (val < 0 || val > 2)
647                 return -EINVAL;
648
649         spin_lock(&tgt->lut_flags_lock);
650         tgt->lut_sync_lock_cancel = val;
651         spin_unlock(&tgt->lut_flags_lock);
652         return count;
653 }
654 LPROC_SEQ_FOPS(ofd_sync_lock_cancel);
655
656 /**
657  * Show if grants compatibility mode is disabled.
658  *
659  * When ofd_grant_compat_disable is set, we don't grant any space to clients
660  * not supporting OBD_CONNECT_GRANT_PARAM. Otherwise, space granted to such
661  * a client is inflated since it consumes PAGE_CACHE_SIZE of grant space per
662  * block, (i.e. typically 4kB units), but underlaying file system might have
663  * block size bigger than page size, e.g. ZFS. See LU-2049 for details.
664  *
665  * \param[in] m         seq_file handle
666  * \param[in] data      unused for single entry
667  *
668  * \retval              0 on success
669  * \retval              negative value on error
670  */
671 static int ofd_grant_compat_disable_seq_show(struct seq_file *m, void *data)
672 {
673         struct obd_device *obd = m->private;
674         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
675
676         return seq_printf(m, "%u\n", ofd->ofd_grant_compat_disable);
677 }
678
679 /**
680  * Change grant compatibility mode.
681  *
682  * Setting ofd_grant_compat_disable prohibit any space granting to clients
683  * not supporting OBD_CONNECT_GRANT_PARAM. See details above.
684  *
685  * \param[in] file      proc file
686  * \param[in] buffer    string which represents mode
687  *                      1: disable compatibility mode
688  *                      0: enable compatibility mode
689  * \param[in] count     \a buffer length
690  * \param[in] off       unused for single entry
691  *
692  * \retval              \a count on success
693  * \retval              negative number on error
694  */
695 static ssize_t
696 ofd_grant_compat_disable_seq_write(struct file *file,
697                                    const char __user *buffer,
698                                    size_t count, loff_t *off)
699 {
700         struct seq_file         *m = file->private_data;
701         struct obd_device       *obd = m->private;
702         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
703         int                      val;
704         int                      rc;
705
706         rc = lprocfs_write_helper(buffer, count, &val);
707         if (rc)
708                 return rc;
709
710         if (val < 0)
711                 return -EINVAL;
712
713         spin_lock(&ofd->ofd_flags_lock);
714         ofd->ofd_grant_compat_disable = !!val;
715         spin_unlock(&ofd->ofd_flags_lock);
716
717         return count;
718 }
719 LPROC_SEQ_FOPS(ofd_grant_compat_disable);
720
721 /**
722  * Show the limit of soft sync RPCs.
723  *
724  * This value defines how many IO RPCs with OBD_BRW_SOFT_SYNC flag
725  * are allowed before sync update will be triggered.
726  *
727  * \param[in] m         seq_file handle
728  * \param[in] data      unused for single entry
729  *
730  * \retval              0 on success
731  * \retval              negative value on error
732  */
733 static int ofd_soft_sync_limit_seq_show(struct seq_file *m, void *data)
734 {
735         struct obd_device       *obd = m->private;
736         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
737
738         return lprocfs_uint_seq_show(m, &ofd->ofd_soft_sync_limit);
739 }
740
741 /**
742  * Change the limit of soft sync RPCs.
743  *
744  * Define how many IO RPCs with OBD_BRW_SOFT_SYNC flag
745  * allowed before sync update will be done.
746  *
747  * This limit is global across all exports.
748  *
749  * \param[in] file      proc file
750  * \param[in] buffer    string which represents limit
751  * \param[in] count     \a buffer length
752  * \param[in] off       unused for single entry
753  *
754  * \retval              \a count on success
755  * \retval              negative number on error
756  */
757 static ssize_t
758 ofd_soft_sync_limit_seq_write(struct file *file, const char __user *buffer,
759                               size_t count, loff_t *off)
760 {
761         struct seq_file   *m = file->private_data;
762         struct obd_device *obd = m->private;
763         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
764
765         return lprocfs_uint_seq_write(file, buffer, count,
766                                       (loff_t *) &ofd->ofd_soft_sync_limit);
767 }
768 LPROC_SEQ_FOPS(ofd_soft_sync_limit);
769
770 /**
771  * Show the LFSCK speed limit.
772  *
773  * The maximum number of items scanned per second.
774  *
775  * \param[in] m         seq_file handle
776  * \param[in] data      unused for single entry
777  *
778  * \retval              0 on success
779  * \retval              negative value on error
780  */
781 static int ofd_lfsck_speed_limit_seq_show(struct seq_file *m, void *data)
782 {
783         struct obd_device       *obd = m->private;
784         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
785
786         return lfsck_get_speed(m, ofd->ofd_osd);
787 }
788
789 /**
790  * Change the LFSCK speed limit.
791  *
792  * Limit number of items that may be scanned per second.
793  *
794  * \param[in] file      proc file
795  * \param[in] buffer    string which represents limit
796  * \param[in] count     \a buffer length
797  * \param[in] off       unused for single entry
798  *
799  * \retval              \a count on success
800  * \retval              negative number on error
801  */
802 static ssize_t
803 ofd_lfsck_speed_limit_seq_write(struct file *file, const char __user *buffer,
804                                 size_t count, loff_t *off)
805 {
806         struct seq_file         *m = file->private_data;
807         struct obd_device       *obd = m->private;
808         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
809         __u32                    val;
810         int                      rc;
811
812         rc = lprocfs_write_helper(buffer, count, &val);
813         if (rc != 0)
814                 return rc;
815
816         rc = lfsck_set_speed(ofd->ofd_osd, val);
817
818         return rc != 0 ? rc : count;
819 }
820 LPROC_SEQ_FOPS(ofd_lfsck_speed_limit);
821
822 /**
823  * Show LFSCK layout verification stats from the most recent LFSCK run.
824  *
825  * \param[in] m         seq_file handle
826  * \param[in] data      unused for single entry
827  *
828  * \retval              0 on success
829  * \retval              negative value on error
830  */
831 static int ofd_lfsck_layout_seq_show(struct seq_file *m, void *data)
832 {
833         struct obd_device *obd = m->private;
834         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
835
836         return lfsck_dump(m, ofd->ofd_osd, LFSCK_TYPE_LAYOUT);
837 }
838 LPROC_SEQ_FOPS_RO(ofd_lfsck_layout);
839
840 /**
841  * Show if LFSCK performed parent FID verification.
842  *
843  * \param[in] m         seq_file handle
844  * \param[in] data      unused for single entry
845  *
846  * \retval              0 on success
847  * \retval              negative value on error
848  */
849 static int ofd_lfsck_verify_pfid_seq_show(struct seq_file *m, void *data)
850 {
851         struct obd_device *obd = m->private;
852         struct ofd_device *ofd = ofd_dev(obd->obd_lu_dev);
853
854         return seq_printf(m,
855                           "switch: %s\ndetected: "LPU64"\nrepaired: "LPU64"\n",
856                           ofd->ofd_lfsck_verify_pfid ? "on" : "off",
857                           ofd->ofd_inconsistency_self_detected,
858                           ofd->ofd_inconsistency_self_repaired);
859 }
860
861 /**
862  * Set the LFSCK behavior to verify parent FID correctness.
863  *
864  * If flag ofd_lfsck_verify_pfid is set then LFSCK does parent FID
865  * verification during read/write operations.
866  *
867  * \param[in] file      proc file
868  * \param[in] buffer    string which represents behavior
869  *                      1: verify parent FID
870  *                      0: don't verify parent FID
871  * \param[in] count     \a buffer length
872  * \param[in] off       unused for single entry
873  *
874  * \retval              \a count on success
875  * \retval              negative number on error
876  */
877 static ssize_t
878 ofd_lfsck_verify_pfid_seq_write(struct file *file, const char __user *buffer,
879                                 size_t count, loff_t *off)
880 {
881         struct seq_file         *m = file->private_data;
882         struct obd_device       *obd = m->private;
883         struct ofd_device       *ofd = ofd_dev(obd->obd_lu_dev);
884         __u32                    val;
885         int                      rc;
886
887         rc = lprocfs_write_helper(buffer, count, &val);
888         if (rc != 0)
889                 return rc;
890
891         ofd->ofd_lfsck_verify_pfid = !!val;
892
893         return count;
894 }
895 LPROC_SEQ_FOPS(ofd_lfsck_verify_pfid);
896
897 LPROC_SEQ_FOPS_RO_TYPE(ofd, uuid);
898 LPROC_SEQ_FOPS_RO_TYPE(ofd, blksize);
899 LPROC_SEQ_FOPS_RO_TYPE(ofd, kbytestotal);
900 LPROC_SEQ_FOPS_RO_TYPE(ofd, kbytesfree);
901 LPROC_SEQ_FOPS_RO_TYPE(ofd, kbytesavail);
902 LPROC_SEQ_FOPS_RO_TYPE(ofd, filestotal);
903 LPROC_SEQ_FOPS_RO_TYPE(ofd, filesfree);
904
905 LPROC_SEQ_FOPS_RO_TYPE(ofd, recovery_status);
906 LPROC_SEQ_FOPS_RW_TYPE(ofd, recovery_time_soft);
907 LPROC_SEQ_FOPS_RW_TYPE(ofd, recovery_time_hard);
908 LPROC_SEQ_FOPS_WO_TYPE(ofd, evict_client);
909 LPROC_SEQ_FOPS_RO_TYPE(ofd, num_exports);
910 LPROC_SEQ_FOPS_RO_TYPE(ofd, target_instance);
911 LPROC_SEQ_FOPS_RW_TYPE(ofd, ir_factor);
912 LPROC_SEQ_FOPS_RW_TYPE(ofd, job_interval);
913
914 struct lprocfs_vars lprocfs_ofd_obd_vars[] = {
915         { .name =       "uuid",
916           .fops =       &ofd_uuid_fops                  },
917         { .name =       "blocksize",
918           .fops =       &ofd_blksize_fops               },
919         { .name =       "kbytestotal",
920           .fops =       &ofd_kbytestotal_fops           },
921         { .name =       "kbytesfree",
922           .fops =       &ofd_kbytesfree_fops            },
923         { .name =       "kbytesavail",
924           .fops =       &ofd_kbytesavail_fops           },
925         { .name =       "filestotal",
926           .fops =       &ofd_filestotal_fops            },
927         { .name =       "filesfree",
928           .fops =       &ofd_filesfree_fops             },
929         { .name =       "seqs_allocated",
930           .fops =       &ofd_seqs_fops                  },
931         { .name =       "fstype",
932           .fops =       &ofd_fstype_fops                },
933         { .name =       "last_id",
934           .fops =       &ofd_last_id_fops               },
935         { .name =       "tot_dirty",
936           .fops =       &ofd_tot_dirty_fops             },
937         { .name =       "tot_pending",
938           .fops =       &ofd_tot_pending_fops           },
939         { .name =       "tot_granted",
940           .fops =       &ofd_tot_granted_fops           },
941         { .name =       "grant_precreate",
942           .fops =       &ofd_grant_precreate_fops       },
943         { .name =       "grant_ratio",
944           .fops =       &ofd_grant_ratio_fops           },
945         { .name =       "precreate_batch",
946           .fops =       &ofd_precreate_batch_fops       },
947         { .name =       "recovery_status",
948           .fops =       &ofd_recovery_status_fops       },
949         { .name =       "recovery_time_soft",
950           .fops =       &ofd_recovery_time_soft_fops    },
951         { .name =       "recovery_time_hard",
952           .fops =       &ofd_recovery_time_hard_fops    },
953         { .name =       "evict_client",
954           .fops =       &ofd_evict_client_fops          },
955         { .name =       "num_exports",
956           .fops =       &ofd_num_exports_fops           },
957         { .name =       "degraded",
958           .fops =       &ofd_degraded_fops              },
959         { .name =       "sync_journal",
960           .fops =       &ofd_syncjournal_fops           },
961         { .name =       "sync_on_lock_cancel",
962           .fops =       &ofd_sync_lock_cancel_fops      },
963         { .name =       "instance",
964           .fops =       &ofd_target_instance_fops       },
965         { .name =       "ir_factor",
966           .fops =       &ofd_ir_factor_fops             },
967         { .name =       "grant_compat_disable",
968           .fops =       &ofd_grant_compat_disable_fops  },
969         { .name =       "client_cache_count",
970           .fops =       &ofd_fmd_max_num_fops           },
971         { .name =       "client_cache_seconds",
972           .fops =       &ofd_fmd_max_age_fops           },
973         { .name =       "job_cleanup_interval",
974           .fops =       &ofd_job_interval_fops          },
975         { .name =       "soft_sync_limit",
976           .fops =       &ofd_soft_sync_limit_fops       },
977         { .name =       "lfsck_speed_limit",
978           .fops =       &ofd_lfsck_speed_limit_fops     },
979         { .name =       "lfsck_layout",
980           .fops =       &ofd_lfsck_layout_fops          },
981         { .name =       "lfsck_verify_pfid",
982           .fops =       &ofd_lfsck_verify_pfid_fops     },
983         { NULL }
984 };
985
986 /**
987  * Initialize OFD statistics counters
988  *
989  * param[in] stats      statistics counters
990  */
991 void ofd_stats_counter_init(struct lprocfs_stats *stats)
992 {
993         LASSERT(stats && stats->ls_num >= LPROC_OFD_STATS_LAST);
994
995         lprocfs_counter_init(stats, LPROC_OFD_STATS_READ,
996                              LPROCFS_CNTR_AVGMINMAX, "read_bytes", "bytes");
997         lprocfs_counter_init(stats, LPROC_OFD_STATS_WRITE,
998                              LPROCFS_CNTR_AVGMINMAX, "write_bytes", "bytes");
999         lprocfs_counter_init(stats, LPROC_OFD_STATS_GETATTR,
1000                              0, "getattr", "reqs");
1001         lprocfs_counter_init(stats, LPROC_OFD_STATS_SETATTR,
1002                              0, "setattr", "reqs");
1003         lprocfs_counter_init(stats, LPROC_OFD_STATS_PUNCH,
1004                              0, "punch", "reqs");
1005         lprocfs_counter_init(stats, LPROC_OFD_STATS_SYNC,
1006                              0, "sync", "reqs");
1007         lprocfs_counter_init(stats, LPROC_OFD_STATS_DESTROY,
1008                              0, "destroy", "reqs");
1009         lprocfs_counter_init(stats, LPROC_OFD_STATS_CREATE,
1010                              0, "create", "reqs");
1011         lprocfs_counter_init(stats, LPROC_OFD_STATS_STATFS,
1012                              0, "statfs", "reqs");
1013         lprocfs_counter_init(stats, LPROC_OFD_STATS_GET_INFO,
1014                              0, "get_info", "reqs");
1015         lprocfs_counter_init(stats, LPROC_OFD_STATS_SET_INFO,
1016                              0, "set_info", "reqs");
1017         lprocfs_counter_init(stats, LPROC_OFD_STATS_QUOTACTL,
1018                              0, "quotactl", "reqs");
1019 }
1020
1021 #endif /* CONFIG_PROC_FS */