Whamcloud - gitweb
4e787d5afaa698dba699750fc6cb7fe874db764a
[fs/lustre-release.git] / lustre / osd-ldiskfs / osd_lproc.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) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/osd/osd_lproc.c
32  *
33  * Author: Mikhail Pershin <tappro@sun.com>
34  */
35
36 #define DEBUG_SUBSYSTEM S_OSD
37
38 #include <lprocfs_status.h>
39
40 #include "osd_internal.h"
41
42 #ifdef CONFIG_PROC_FS
43
44 void osd_brw_stats_update(struct osd_device *osd, struct osd_iobuf *iobuf)
45 {
46         struct brw_stats *s = &osd->od_brw_stats;
47         sector_t         *last_block = NULL;
48         struct page     **pages = iobuf->dr_pages;
49         struct page      *last_page = NULL;
50         unsigned long     discont_pages = 0;
51         unsigned long     discont_blocks = 0;
52         sector_t         *blocks = iobuf->dr_blocks;
53         int               i, nr_pages = iobuf->dr_npages;
54         int               blocks_per_page;
55         int               rw = iobuf->dr_rw;
56
57         if (unlikely(nr_pages == 0))
58                 return;
59
60         blocks_per_page = PAGE_SIZE >> osd_sb(osd)->s_blocksize_bits;
61
62         lprocfs_oh_tally_log2(&s->hist[BRW_R_PAGES+rw], nr_pages);
63
64         while (nr_pages-- > 0) {
65                 if (last_page && (*pages)->index != (last_page->index + 1))
66                         discont_pages++;
67                 last_page = *pages;
68                 pages++;
69                 for (i = 0; i < blocks_per_page; i++) {
70                         if (last_block && *blocks != (*last_block + 1))
71                                 discont_blocks++;
72                         last_block = blocks++;
73                 }
74         }
75
76         lprocfs_oh_tally(&s->hist[BRW_R_DISCONT_PAGES+rw], discont_pages);
77         lprocfs_oh_tally(&s->hist[BRW_R_DISCONT_BLOCKS+rw], discont_blocks);
78 }
79
80 static void display_brw_stats(struct seq_file *seq, char *name, char *units,
81         struct obd_histogram *read, struct obd_histogram *write, int scale)
82 {
83         unsigned long read_tot, write_tot, r, w, read_cum = 0, write_cum = 0;
84         int i;
85
86         seq_printf(seq, "\n%26s read      |     write\n", " ");
87         seq_printf(seq, "%-22s %-5s %% cum %% |  %-11s %% cum %%\n",
88                    name, units, units);
89
90         read_tot = lprocfs_oh_sum(read);
91         write_tot = lprocfs_oh_sum(write);
92         for (i = 0; i < OBD_HIST_MAX; i++) {
93                 r = read->oh_buckets[i];
94                 w = write->oh_buckets[i];
95                 read_cum += r;
96                 write_cum += w;
97                 if (read_cum == 0 && write_cum == 0)
98                         continue;
99
100                 if (!scale)
101                         seq_printf(seq, "%u", i);
102                 else if (i < 10)
103                         seq_printf(seq, "%u", scale << i);
104                 else if (i < 20)
105                         seq_printf(seq, "%uK", scale << (i-10));
106                 else
107                         seq_printf(seq, "%uM", scale << (i-20));
108
109                 seq_printf(seq, ":\t\t%10lu %3u %3u   | %4lu %3u %3u\n",
110                            r, pct(r, read_tot), pct(read_cum, read_tot),
111                            w, pct(w, write_tot), pct(write_cum, write_tot));
112
113                 if (read_cum == read_tot && write_cum == write_tot)
114                         break;
115         }
116 }
117
118 static void brw_stats_show(struct seq_file *seq, struct brw_stats *brw_stats)
119 {
120         struct timespec64 now;
121
122         /* this sampling races with updates */
123         ktime_get_real_ts64(&now);
124
125         seq_printf(seq, "snapshot_time:         %lld.%09ld (secs.nsecs)\n",
126                    (s64)now.tv_sec, now.tv_nsec);
127
128         display_brw_stats(seq, "pages per bulk r/w", "rpcs",
129                           &brw_stats->hist[BRW_R_PAGES],
130                           &brw_stats->hist[BRW_W_PAGES], 1);
131
132         display_brw_stats(seq, "discontiguous pages", "rpcs",
133                           &brw_stats->hist[BRW_R_DISCONT_PAGES],
134                           &brw_stats->hist[BRW_W_DISCONT_PAGES], 0);
135
136         display_brw_stats(seq, "discontiguous blocks", "rpcs",
137                           &brw_stats->hist[BRW_R_DISCONT_BLOCKS],
138                           &brw_stats->hist[BRW_W_DISCONT_BLOCKS], 0);
139
140         display_brw_stats(seq, "disk fragmented I/Os", "ios",
141                           &brw_stats->hist[BRW_R_DIO_FRAGS],
142                           &brw_stats->hist[BRW_W_DIO_FRAGS], 0);
143
144         display_brw_stats(seq, "disk I/Os in flight", "ios",
145                           &brw_stats->hist[BRW_R_RPC_HIST],
146                           &brw_stats->hist[BRW_W_RPC_HIST], 0);
147
148         display_brw_stats(seq, "I/O time (1/1000s)", "ios",
149                           &brw_stats->hist[BRW_R_IO_TIME],
150                           &brw_stats->hist[BRW_W_IO_TIME], 1);
151
152         display_brw_stats(seq, "disk I/O size", "ios",
153                           &brw_stats->hist[BRW_R_DISK_IOSIZE],
154                           &brw_stats->hist[BRW_W_DISK_IOSIZE], 1);
155 }
156
157 static int osd_brw_stats_seq_show(struct seq_file *seq, void *v)
158 {
159         struct osd_device *osd = seq->private;
160
161         brw_stats_show(seq, &osd->od_brw_stats);
162
163         return 0;
164 }
165
166 static ssize_t osd_brw_stats_seq_write(struct file *file,
167                                        const char __user *buf,
168                                        size_t len, loff_t *off)
169 {
170         struct seq_file *seq = file->private_data;
171         struct osd_device *osd = seq->private;
172         int i;
173
174         for (i = 0; i < BRW_LAST; i++)
175                 lprocfs_oh_clear(&osd->od_brw_stats.hist[i]);
176
177         return len;
178 }
179
180 LPROC_SEQ_FOPS(osd_brw_stats);
181
182 static int osd_stats_init(struct osd_device *osd)
183 {
184         int i, result;
185         ENTRY;
186
187         for (i = 0; i < BRW_LAST; i++)
188                 spin_lock_init(&osd->od_brw_stats.hist[i].oh_lock);
189
190         osd->od_stats = lprocfs_alloc_stats(LPROC_OSD_LAST, 0);
191         if (osd->od_stats != NULL) {
192                 result = lprocfs_register_stats(osd->od_proc_entry, "stats",
193                                                 osd->od_stats);
194                 if (result)
195                         GOTO(out, result);
196
197                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_GET_PAGE,
198                                      LPROCFS_CNTR_AVGMINMAX|LPROCFS_CNTR_STDDEV,
199                                      "get_page", "usec");
200                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_NO_PAGE,
201                                      LPROCFS_CNTR_AVGMINMAX,
202                                      "get_page_failures", "num");
203                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_CACHE_ACCESS,
204                                      LPROCFS_CNTR_AVGMINMAX,
205                                      "cache_access", "pages");
206                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_CACHE_HIT,
207                                      LPROCFS_CNTR_AVGMINMAX,
208                                      "cache_hit", "pages");
209                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_CACHE_MISS,
210                                      LPROCFS_CNTR_AVGMINMAX,
211                                      "cache_miss", "pages");
212 #if OSD_THANDLE_STATS
213                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_THANDLE_STARTING,
214                                      LPROCFS_CNTR_AVGMINMAX,
215                                      "thandle starting", "usec");
216                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_THANDLE_OPEN,
217                                      LPROCFS_CNTR_AVGMINMAX,
218                                      "thandle open", "usec");
219                 lprocfs_counter_init(osd->od_stats, LPROC_OSD_THANDLE_CLOSING,
220                                      LPROCFS_CNTR_AVGMINMAX,
221                                      "thandle closing", "usec");
222 #endif
223                 result = lprocfs_seq_create(osd->od_proc_entry, "brw_stats",
224                                             0644, &osd_brw_stats_fops, osd);
225         } else
226                 result = -ENOMEM;
227
228 out:
229         RETURN(result);
230 }
231
232 static ssize_t fstype_show(struct kobject *kobj, struct attribute *attr,
233                            char *buf)
234 {
235         return sprintf(buf, "ldiskfs\n");
236 }
237 LUSTRE_RO_ATTR(fstype);
238
239 static ssize_t mntdev_show(struct kobject *kobj, struct attribute *attr,
240                            char *buf)
241 {
242         struct dt_device *dt = container_of(kobj, struct dt_device,
243                                             dd_kobj);
244         struct osd_device *osd = osd_dt_dev(dt);
245
246         LASSERT(osd);
247         if (unlikely(!osd->od_mnt))
248                 return -EINPROGRESS;
249
250         return sprintf(buf, "%s\n", osd->od_mntdev);
251 }
252 LUSTRE_RO_ATTR(mntdev);
253
254 static ssize_t read_cache_enable_show(struct kobject *kobj,
255                                       struct attribute *attr,
256                                       char *buf)
257 {
258         struct dt_device *dt = container_of(kobj, struct dt_device,
259                                             dd_kobj);
260         struct osd_device *osd = osd_dt_dev(dt);
261
262         LASSERT(osd);
263         if (unlikely(!osd->od_mnt))
264                 return -EINPROGRESS;
265
266         return sprintf(buf, "%u\n", osd->od_read_cache);
267 }
268
269 static ssize_t read_cache_enable_store(struct kobject *kobj,
270                                        struct attribute *attr,
271                                        const char *buffer, size_t count)
272 {
273         struct dt_device *dt = container_of(kobj, struct dt_device,
274                                             dd_kobj);
275         struct osd_device *osd = osd_dt_dev(dt);
276         bool val;
277         int rc;
278
279         LASSERT(osd);
280         if (unlikely(!osd->od_mnt))
281                 return -EINPROGRESS;
282
283         rc = kstrtobool(buffer, &val);
284         if (rc)
285                 return rc;
286
287         osd->od_read_cache = !!val;
288         return count;
289 }
290 LUSTRE_RW_ATTR(read_cache_enable);
291
292 static ssize_t writethrough_cache_enable_show(struct kobject *kobj,
293                                               struct attribute *attr,
294                                               char *buf)
295 {
296         struct dt_device *dt = container_of(kobj, struct dt_device,
297                                             dd_kobj);
298         struct osd_device *osd = osd_dt_dev(dt);
299
300         LASSERT(osd);
301         if (unlikely(!osd->od_mnt))
302                 return -EINPROGRESS;
303
304         return sprintf(buf, "%u\n", osd->od_writethrough_cache);
305 }
306
307 static ssize_t writethrough_cache_enable_store(struct kobject *kobj,
308                                                struct attribute *attr,
309                                                const char *buffer,
310                                                size_t count)
311 {
312         struct dt_device *dt = container_of(kobj, struct dt_device,
313                                             dd_kobj);
314         struct osd_device *osd = osd_dt_dev(dt);
315         bool val;
316         int rc;
317
318         LASSERT(osd);
319         if (unlikely(!osd->od_mnt))
320                 return -EINPROGRESS;
321
322         rc = kstrtobool(buffer, &val);
323         if (rc)
324                 return rc;
325
326         osd->od_writethrough_cache = !!val;
327         return count;
328 }
329 LUSTRE_RW_ATTR(writethrough_cache_enable);
330
331 static ssize_t fallocate_zero_blocks_show(struct kobject *kobj,
332                                           struct attribute *attr,
333                                           char *buf)
334 {
335         struct dt_device *dt = container_of(kobj, struct dt_device,
336                                             dd_kobj);
337         struct osd_device *osd = osd_dt_dev(dt);
338
339         LASSERT(osd);
340         if (unlikely(!osd->od_mnt))
341                 return -EINPROGRESS;
342
343         return scnprintf(buf, PAGE_SIZE, "%d\n", osd->od_fallocate_zero_blocks);
344 }
345
346 /*
347  * Set how fallocate() interacts with the backing filesystem:
348  * -1: fallocate is disabled and returns -EOPNOTSUPP
349  *  0: fallocate allocates unwritten extents (like ext4)
350  *  1: fallocate zeroes allocated extents on disk
351  */
352 static ssize_t fallocate_zero_blocks_store(struct kobject *kobj,
353                                            struct attribute *attr,
354                                            const char *buffer, size_t count)
355 {
356         struct dt_device *dt = container_of(kobj, struct dt_device,
357                                             dd_kobj);
358         struct osd_device *osd = osd_dt_dev(dt);
359         long val;
360         int rc;
361
362         LASSERT(osd);
363         if (unlikely(!osd->od_mnt))
364                 return -EINPROGRESS;
365
366         rc = kstrtol(buffer, 0, &val);
367         if (rc)
368                 return rc;
369
370         if (val < -1 || val > 1)
371                 return -EINVAL;
372
373         osd->od_fallocate_zero_blocks = val;
374         return count;
375 }
376 LUSTRE_RW_ATTR(fallocate_zero_blocks);
377
378 ssize_t force_sync_store(struct kobject *kobj, struct attribute *attr,
379                          const char *buffer, size_t count)
380 {
381         struct dt_device *dt = container_of(kobj, struct dt_device,
382                                             dd_kobj);
383         struct osd_device *osd = osd_dt_dev(dt);
384         struct lu_env env;
385         int rc;
386
387         LASSERT(osd);
388         if (unlikely(!osd->od_mnt))
389                 return -EINPROGRESS;
390
391         rc = lu_env_init(&env, LCT_LOCAL);
392         if (rc)
393                 return rc;
394
395         rc = dt_sync(&env, dt);
396         lu_env_fini(&env);
397
398         return rc == 0 ? count : rc;
399 }
400 LUSTRE_WO_ATTR(force_sync);
401
402 static ssize_t nonrotational_show(struct kobject *kobj, struct attribute *attr,
403                                   char *buf)
404 {
405         struct dt_device *dt = container_of(kobj, struct dt_device,
406                                             dd_kobj);
407         struct osd_device *osd = osd_dt_dev(dt);
408
409         LASSERT(osd);
410         if (unlikely(!osd->od_mnt))
411                 return -EINPROGRESS;
412
413         return sprintf(buf, "%u\n", osd->od_nonrotational);
414 }
415
416 static ssize_t nonrotational_store(struct kobject *kobj,
417                                    struct attribute *attr, const char *buffer,
418                                    size_t count)
419 {
420         struct dt_device *dt = container_of(kobj, struct dt_device,
421                                             dd_kobj);
422         struct osd_device *osd = osd_dt_dev(dt);
423         bool val;
424         int rc;
425
426         LASSERT(osd);
427         if (unlikely(!osd->od_mnt))
428                 return -EINPROGRESS;
429
430         rc = kstrtobool(buffer, &val);
431         if (rc)
432                 return rc;
433
434         osd->od_nonrotational = val;
435         return count;
436 }
437 LUSTRE_RW_ATTR(nonrotational);
438
439 static ssize_t pdo_show(struct kobject *kobj, struct attribute *attr,
440                         char *buf)
441 {
442         return sprintf(buf, "%s\n", ldiskfs_pdo ? "ON" : "OFF");
443 }
444
445 static ssize_t pdo_store(struct kobject *kobj, struct attribute *attr,
446                          const char *buffer, size_t count)
447 {
448         bool pdo;
449         int rc;
450
451         rc = kstrtobool(buffer, &pdo);
452         if (rc != 0)
453                 return rc;
454
455         ldiskfs_pdo = pdo;
456
457         return count;
458 }
459 LUSTRE_RW_ATTR(pdo);
460
461 static ssize_t auto_scrub_show(struct kobject *kobj, struct attribute *attr,
462                                char *buf)
463 {
464         struct dt_device *dt = container_of(kobj, struct dt_device,
465                                             dd_kobj);
466         struct osd_device *dev = osd_dt_dev(dt);
467
468         LASSERT(dev);
469         if (unlikely(!dev->od_mnt))
470                 return -EINPROGRESS;
471
472         return sprintf(buf, "%lld\n", dev->od_auto_scrub_interval);
473 }
474
475 static ssize_t auto_scrub_store(struct kobject *kobj, struct attribute *attr,
476                                 const char *buffer, size_t count)
477 {
478         struct dt_device *dt = container_of(kobj, struct dt_device,
479                                             dd_kobj);
480         struct osd_device *dev = osd_dt_dev(dt);
481         s64 val;
482         int rc;
483
484         LASSERT(dev);
485         if (unlikely(!dev->od_mnt))
486                 return -EINPROGRESS;
487
488         rc = kstrtoll(buffer, 0, &val);
489         if (rc)
490                 return rc;
491
492         dev->od_auto_scrub_interval = val;
493         return count;
494 }
495 LUSTRE_RW_ATTR(auto_scrub);
496
497 static ssize_t full_scrub_ratio_show(struct kobject *kobj,
498                                      struct attribute *attr,
499                                      char *buf)
500 {
501         struct dt_device *dt = container_of(kobj, struct dt_device,
502                                             dd_kobj);
503         struct osd_device *dev = osd_dt_dev(dt);
504
505         LASSERT(dev);
506         if (unlikely(!dev->od_mnt))
507                 return -EINPROGRESS;
508
509         return sprintf(buf, "%llu\n", dev->od_full_scrub_ratio);
510 }
511
512 static ssize_t full_scrub_ratio_store(struct kobject *kobj,
513                                       struct attribute *attr,
514                                       const char *buffer, size_t count)
515 {
516         struct dt_device *dt = container_of(kobj, struct dt_device,
517                                             dd_kobj);
518         struct osd_device *dev = osd_dt_dev(dt);
519         s64 val;
520         int rc;
521
522         LASSERT(dev);
523         if (unlikely(!dev->od_mnt))
524                 return -EINPROGRESS;
525
526         rc = kstrtoll(buffer, 0, &val);
527         if (rc)
528                 return rc;
529
530         if (val < 0)
531                 return -EINVAL;
532
533         dev->od_full_scrub_ratio = val;
534         return count;
535 }
536 LUSTRE_RW_ATTR(full_scrub_ratio);
537
538 static ssize_t full_scrub_threshold_rate_show(struct kobject *kobj,
539                                               struct attribute *attr,
540                                               char *buf)
541 {
542         struct dt_device *dt = container_of(kobj, struct dt_device,
543                                             dd_kobj);
544         struct osd_device *dev = osd_dt_dev(dt);
545
546         LASSERT(dev);
547         if (unlikely(!dev->od_mnt))
548                 return -EINPROGRESS;
549
550         return sprintf(buf, "%llu (bad OI mappings/minute)\n",
551                        dev->od_full_scrub_threshold_rate);
552 }
553
554 static ssize_t full_scrub_threshold_rate_store(struct kobject *kobj,
555                                                struct attribute *attr,
556                                                const char *buffer, size_t count)
557 {
558         struct dt_device *dt = container_of(kobj, struct dt_device,
559                                             dd_kobj);
560         struct osd_device *dev = osd_dt_dev(dt);
561         u64 val;
562         int rc;
563
564         LASSERT(dev);
565         if (unlikely(!dev->od_mnt))
566                 return -EINPROGRESS;
567
568         rc = kstrtoull(buffer, 0, &val);
569         if (rc != 0)
570                 return rc;
571
572         dev->od_full_scrub_threshold_rate = val;
573         return count;
574 }
575 LUSTRE_RW_ATTR(full_scrub_threshold_rate);
576
577 static int ldiskfs_osd_oi_scrub_seq_show(struct seq_file *m, void *data)
578 {
579         struct osd_device *dev = osd_dt_dev((struct dt_device *)m->private);
580
581         LASSERT(dev != NULL);
582         if (unlikely(dev->od_mnt == NULL))
583                 return -EINPROGRESS;
584
585         osd_scrub_dump(m, dev);
586         return 0;
587 }
588
589 LDEBUGFS_SEQ_FOPS_RO(ldiskfs_osd_oi_scrub);
590
591 static int ldiskfs_osd_readcache_seq_show(struct seq_file *m, void *data)
592 {
593         struct osd_device *osd = osd_dt_dev((struct dt_device *)m->private);
594
595         LASSERT(osd != NULL);
596         if (unlikely(osd->od_mnt == NULL))
597                 return -EINPROGRESS;
598
599         seq_printf(m, "%llu\n", osd->od_readcache_max_filesize);
600         return 0;
601 }
602
603 static ssize_t
604 ldiskfs_osd_readcache_seq_write(struct file *file, const char __user *buffer,
605                                 size_t count, loff_t *off)
606 {
607         struct seq_file *m = file->private_data;
608         struct dt_device *dt = m->private;
609         struct osd_device *osd = osd_dt_dev(dt);
610         char kernbuf[22] = "";
611         u64 val;
612         int rc;
613
614         LASSERT(osd != NULL);
615         if (unlikely(osd->od_mnt == NULL))
616                 return -EINPROGRESS;
617
618         if (count >= sizeof(kernbuf))
619                 return -EINVAL;
620
621         if (copy_from_user(kernbuf, buffer, count))
622                 return -EFAULT;
623         kernbuf[count] = 0;
624
625         rc = sysfs_memparse(kernbuf, count, &val, "B");
626         if (rc < 0)
627                 return rc;
628
629         osd->od_readcache_max_filesize = val > OSD_MAX_CACHE_SIZE ?
630                                          OSD_MAX_CACHE_SIZE : val;
631         return count;
632 }
633
634 LDEBUGFS_SEQ_FOPS(ldiskfs_osd_readcache);
635
636 static int ldiskfs_osd_readcache_max_io_seq_show(struct seq_file *m, void *data)
637 {
638         struct osd_device *osd = osd_dt_dev((struct dt_device *)m->private);
639
640         LASSERT(osd != NULL);
641         if (unlikely(osd->od_mnt == NULL))
642                 return -EINPROGRESS;
643
644         seq_printf(m, "%lu\n", osd->od_readcache_max_iosize >> 20);
645         return 0;
646 }
647
648 static ssize_t
649 ldiskfs_osd_readcache_max_io_seq_write(struct file *file,
650                                        const char __user *buffer,
651                                        size_t count, loff_t *off)
652 {
653         struct seq_file *m = file->private_data;
654         struct dt_device *dt = m->private;
655         struct osd_device *osd = osd_dt_dev(dt);
656         char kernbuf[22] = "";
657         u64 val;
658         int rc;
659
660         LASSERT(osd != NULL);
661         if (unlikely(osd->od_mnt == NULL))
662                 return -EINPROGRESS;
663
664         if (count >= sizeof(kernbuf))
665                 return -EINVAL;
666
667         if (copy_from_user(kernbuf, buffer, count))
668                 return -EFAULT;
669         kernbuf[count] = 0;
670
671         rc = sysfs_memparse(kernbuf, count, &val, "MiB");
672         if (rc < 0)
673                 return rc;
674
675         if (val > PTLRPC_MAX_BRW_SIZE)
676                 return -ERANGE;
677         osd->od_readcache_max_iosize = val;
678         return count;
679 }
680
681 LDEBUGFS_SEQ_FOPS(ldiskfs_osd_readcache_max_io);
682
683 static int ldiskfs_osd_writethrough_max_io_seq_show(struct seq_file *m,
684                                                     void *data)
685 {
686         struct osd_device *osd = osd_dt_dev((struct dt_device *)m->private);
687
688         LASSERT(osd != NULL);
689         if (unlikely(osd->od_mnt == NULL))
690                 return -EINPROGRESS;
691
692         seq_printf(m, "%lu\n", osd->od_writethrough_max_iosize >> 20);
693         return 0;
694 }
695
696 static ssize_t
697 ldiskfs_osd_writethrough_max_io_seq_write(struct file *file,
698                                        const char __user *buffer,
699                                        size_t count, loff_t *off)
700 {
701         struct seq_file *m = file->private_data;
702         struct dt_device *dt = m->private;
703         struct osd_device *osd = osd_dt_dev(dt);
704         char kernbuf[22] = "";
705         u64 val;
706         int rc;
707
708         LASSERT(osd != NULL);
709         if (unlikely(osd->od_mnt == NULL))
710                 return -EINPROGRESS;
711
712         if (count >= sizeof(kernbuf))
713                 return -EINVAL;
714
715         if (copy_from_user(kernbuf, buffer, count))
716                 return -EFAULT;
717         kernbuf[count] = 0;
718
719         rc = sysfs_memparse(kernbuf, count, &val, "MiB");
720         if (rc < 0)
721                 return rc;
722
723         if (val > PTLRPC_MAX_BRW_SIZE)
724                 return -ERANGE;
725         osd->od_writethrough_max_iosize = val;
726         return count;
727 }
728
729 LDEBUGFS_SEQ_FOPS(ldiskfs_osd_writethrough_max_io);
730
731 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 52, 0)
732 static ssize_t index_in_idif_show(struct kobject *kobj, struct attribute *attr,
733                                   char *buf)
734 {
735         struct dt_device *dt = container_of(kobj, struct dt_device,
736                                             dd_kobj);
737         struct osd_device *dev = osd_dt_dev(dt);
738
739         LASSERT(dev);
740         if (unlikely(!dev->od_mnt))
741                 return -EINPROGRESS;
742
743         return sprintf(buf, "%d\n", (int)(dev->od_index_in_idif));
744 }
745
746 static ssize_t index_in_idif_store(struct kobject *kobj,
747                                    struct attribute *attr,
748                                    const char *buffer, size_t count)
749 {
750         struct dt_device *dt = container_of(kobj, struct dt_device,
751                                             dd_kobj);
752         struct osd_device *dev = osd_dt_dev(dt);
753         struct lu_target *tgt;
754         struct lu_env env;
755         bool val;
756         int rc;
757
758         LASSERT(dev);
759         if (unlikely(!dev->od_mnt))
760                 return -EINPROGRESS;
761
762         rc = kstrtobool(buffer, &val);
763         if (rc)
764                 return rc;
765
766         if (dev->od_index_in_idif) {
767                 if (val)
768                         return count;
769
770                 LCONSOLE_WARN("%s: OST-index in IDIF has been enabled, "
771                               "it cannot be reverted back.\n", osd_name(dev));
772                 return -EPERM;
773         }
774
775         if (!val)
776                 return count;
777
778         rc = lu_env_init(&env, LCT_DT_THREAD);
779         if (rc)
780                 return rc;
781
782         tgt = dev->od_dt_dev.dd_lu_dev.ld_site->ls_tgt;
783         tgt->lut_lsd.lsd_feature_rocompat |= OBD_ROCOMPAT_IDX_IN_IDIF;
784         rc = tgt_server_data_update(&env, tgt, 1);
785         lu_env_fini(&env);
786         if (rc < 0)
787                 return rc;
788
789         LCONSOLE_INFO("%s: enable OST-index in IDIF successfully, "
790                       "it cannot be reverted back.\n", osd_name(dev));
791
792         dev->od_index_in_idif = 1;
793         return count;
794 }
795 LUSTRE_RW_ATTR(index_in_idif);
796
797 int osd_register_proc_index_in_idif(struct osd_device *osd)
798 {
799         struct dt_device *dt = &osd->od_dt_dev;
800
801         return sysfs_create_file(&dt->dd_kobj, &lustre_attr_index_in_idif.attr);
802 }
803 #endif
804
805 static ssize_t index_backup_show(struct kobject *kobj, struct attribute *attr,
806                                  char *buf)
807 {
808         struct dt_device *dt = container_of(kobj, struct dt_device,
809                                             dd_kobj);
810         struct osd_device *dev = osd_dt_dev(dt);
811
812         LASSERT(dev);
813         if (unlikely(!dev->od_mnt))
814                 return -EINPROGRESS;
815
816         return sprintf(buf, "%d\n", dev->od_index_backup_policy);
817 }
818
819 ssize_t index_backup_store(struct kobject *kobj, struct attribute *attr,
820                            const char *buffer, size_t count)
821 {
822         struct dt_device *dt = container_of(kobj, struct dt_device,
823                                            dd_kobj);
824         struct osd_device *dev = osd_dt_dev(dt);
825         int val;
826         int rc;
827
828         LASSERT(dev);
829         if (unlikely(!dev->od_mnt))
830                 return -EINPROGRESS;
831
832         rc = kstrtoint(buffer, 0, &val);
833         if (rc)
834                 return rc;
835
836         dev->od_index_backup_policy = val;
837         return count;
838 }
839 LUSTRE_RW_ATTR(index_backup);
840
841 struct ldebugfs_vars ldebugfs_osd_obd_vars[] = {
842         { .name =       "oi_scrub",
843           .fops =       &ldiskfs_osd_oi_scrub_fops      },
844         { .name =       "readcache_max_filesize",
845           .fops =       &ldiskfs_osd_readcache_fops     },
846         { .name =       "readcache_max_io_mb",
847           .fops =       &ldiskfs_osd_readcache_max_io_fops      },
848         { .name =       "writethrough_max_io_mb",
849           .fops =       &ldiskfs_osd_writethrough_max_io_fops   },
850         { NULL }
851 };
852
853 static struct attribute *ldiskfs_attrs[] = {
854         &lustre_attr_read_cache_enable.attr,
855         &lustre_attr_writethrough_cache_enable.attr,
856         &lustre_attr_fstype.attr,
857         &lustre_attr_mntdev.attr,
858         &lustre_attr_fallocate_zero_blocks.attr,
859         &lustre_attr_force_sync.attr,
860         &lustre_attr_nonrotational.attr,
861         &lustre_attr_index_backup.attr,
862         &lustre_attr_auto_scrub.attr,
863         &lustre_attr_pdo.attr,
864         &lustre_attr_full_scrub_ratio.attr,
865         &lustre_attr_full_scrub_threshold_rate.attr,
866         NULL,
867 };
868
869 int osd_procfs_init(struct osd_device *osd, const char *name)
870 {
871         struct obd_type *type;
872         int rc;
873
874         ENTRY;
875
876         /* at the moment there is no linkage between lu_type
877          * and obd_type, so we lookup obd_type this way
878          */
879         type = class_search_type(LUSTRE_OSD_LDISKFS_NAME);
880
881         LASSERT(name);
882         LASSERT(type);
883
884         CDEBUG(D_CONFIG, "%s: register osd-ldiskfs tunable parameters\n", name);
885
886         /* put reference taken by class_search_type */
887         kobject_put(&type->typ_kobj);
888
889         osd->od_dt_dev.dd_ktype.default_attrs = ldiskfs_attrs;
890         rc = dt_tunables_init(&osd->od_dt_dev, type, name,
891                               ldebugfs_osd_obd_vars);
892         if (rc) {
893                 CERROR("%s: cannot setup sysfs / debugfs entry: %d\n",
894                        name, rc);
895                 GOTO(out, rc);
896         }
897
898         if (osd->od_proc_entry)
899                 RETURN(0);
900
901         /* Find the type procroot and add the proc entry for this device */
902         osd->od_proc_entry = lprocfs_register(name, type->typ_procroot,
903                                               NULL, &osd->od_dt_dev);
904         if (IS_ERR(osd->od_proc_entry)) {
905                 rc = PTR_ERR(osd->od_proc_entry);
906                 CERROR("Error %d setting up lprocfs for %s\n",
907                        rc, name);
908                 osd->od_proc_entry = NULL;
909                 GOTO(out, rc);
910         }
911
912         rc = osd_stats_init(osd);
913
914         EXIT;
915 out:
916         if (rc)
917                 osd_procfs_fini(osd);
918         return rc;
919 }
920
921 int osd_procfs_fini(struct osd_device *osd)
922 {
923         if (osd->od_stats)
924                 lprocfs_free_stats(&osd->od_stats);
925
926         if (osd->od_proc_entry)
927                 lprocfs_remove(&osd->od_proc_entry);
928
929         return dt_tunables_fini(&osd->od_dt_dev);
930 }
931 #endif