Whamcloud - gitweb
LU-11408 osc: propagate grant shrink interval immediately
[fs/lustre-release.git] / lustre / osc / lproc_osc.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) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, 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 #define DEBUG_SUBSYSTEM S_CLASS
33
34 #include <linux/version.h>
35 #include <asm/statfs.h>
36 #include <obd_cksum.h>
37 #include <obd_class.h>
38 #include <lprocfs_status.h>
39 #include <linux/seq_file.h>
40 #include <lustre_osc.h>
41
42 #include "osc_internal.h"
43
44 static ssize_t active_show(struct kobject *kobj, struct attribute *attr,
45                            char *buf)
46 {
47         struct obd_device *dev = container_of(kobj, struct obd_device,
48                                               obd_kset.kobj);
49         int rc;
50
51         LPROCFS_CLIMP_CHECK(dev);
52         rc = sprintf(buf, "%d\n", !dev->u.cli.cl_import->imp_deactive);
53         LPROCFS_CLIMP_EXIT(dev);
54         return rc;
55 }
56
57 static ssize_t active_store(struct kobject *kobj, struct attribute *attr,
58                             const char *buffer, size_t count)
59 {
60         struct obd_device *dev = container_of(kobj, struct obd_device,
61                                               obd_kset.kobj);
62         bool val;
63         int rc;
64
65         rc = kstrtobool(buffer, &val);
66         if (rc)
67                 return rc;
68
69         /* opposite senses */
70         if (dev->u.cli.cl_import->imp_deactive == val)
71                 rc = ptlrpc_set_import_active(dev->u.cli.cl_import, val);
72         else
73                 CDEBUG(D_CONFIG, "activate %u: ignoring repeat request\n",
74                        (unsigned int)val);
75
76         return count;
77 }
78 LUSTRE_RW_ATTR(active);
79
80 static ssize_t max_rpcs_in_flight_show(struct kobject *kobj,
81                                        struct attribute *attr,
82                                        char *buf)
83 {
84         struct obd_device *dev = container_of(kobj, struct obd_device,
85                                               obd_kset.kobj);
86         struct client_obd *cli = &dev->u.cli;
87         ssize_t len;
88
89         spin_lock(&cli->cl_loi_list_lock);
90         len = sprintf(buf, "%u\n", cli->cl_max_rpcs_in_flight);
91         spin_unlock(&cli->cl_loi_list_lock);
92         return len;
93 }
94
95 static ssize_t max_rpcs_in_flight_store(struct kobject *kobj,
96                                         struct attribute *attr,
97                                         const char *buffer,
98                                         size_t count)
99 {
100         struct obd_device *dev = container_of(kobj, struct obd_device,
101                                               obd_kset.kobj);
102         struct client_obd *cli = &dev->u.cli;
103         int adding, added, req_count;
104         unsigned int val;
105         int rc;
106
107         rc = kstrtouint(buffer, 0, &val);
108         if (rc)
109                 return rc;
110
111         if (val == 0 || val > OSC_MAX_RIF_MAX)
112                 return -ERANGE;
113
114         LPROCFS_CLIMP_CHECK(dev);
115
116         adding = (int)val - cli->cl_max_rpcs_in_flight;
117         req_count = atomic_read(&osc_pool_req_count);
118         if (adding > 0 && req_count < osc_reqpool_maxreqcount) {
119                 /*
120                  * There might be some race which will cause over-limit
121                  * allocation, but it is fine.
122                  */
123                 if (req_count + adding > osc_reqpool_maxreqcount)
124                         adding = osc_reqpool_maxreqcount - req_count;
125
126                 added = osc_rq_pool->prp_populate(osc_rq_pool, adding);
127                 atomic_add(added, &osc_pool_req_count);
128         }
129
130         spin_lock(&cli->cl_loi_list_lock);
131         cli->cl_max_rpcs_in_flight = val;
132         client_adjust_max_dirty(cli);
133         spin_unlock(&cli->cl_loi_list_lock);
134
135         LPROCFS_CLIMP_EXIT(dev);
136         return count;
137 }
138 LUSTRE_RW_ATTR(max_rpcs_in_flight);
139
140 static ssize_t max_dirty_mb_show(struct kobject *kobj,
141                                  struct attribute *attr,
142                                  char *buf)
143 {
144         struct obd_device *dev = container_of(kobj, struct obd_device,
145                                               obd_kset.kobj);
146         struct client_obd *cli = &dev->u.cli;
147         long val;
148         int mult;
149
150         spin_lock(&cli->cl_loi_list_lock);
151         val = cli->cl_dirty_max_pages;
152         spin_unlock(&cli->cl_loi_list_lock);
153
154         mult = 1 << (20 - PAGE_SHIFT);
155         return lprocfs_read_frac_helper(buf, PAGE_SIZE, val, mult);
156 }
157
158 static ssize_t max_dirty_mb_store(struct kobject *kobj,
159                                   struct attribute *attr,
160                                   const char *buffer,
161                                   size_t count)
162 {
163         struct obd_device *dev = container_of(kobj, struct obd_device,
164                                               obd_kset.kobj);
165         struct client_obd *cli = &dev->u.cli;
166         unsigned long pages_number;
167         int rc;
168
169         rc = kstrtoul(buffer, 10, &pages_number);
170         if (rc)
171                 return rc;
172
173         pages_number *= 1 << (20 - PAGE_SHIFT); /* MB -> pages */
174
175         if (pages_number <= 0 ||
176             pages_number >= OSC_MAX_DIRTY_MB_MAX << (20 - PAGE_SHIFT) ||
177             pages_number > totalram_pages / 4) /* 1/4 of RAM */
178                 return -ERANGE;
179
180         spin_lock(&cli->cl_loi_list_lock);
181         cli->cl_dirty_max_pages = pages_number;
182         osc_wake_cache_waiters(cli);
183         spin_unlock(&cli->cl_loi_list_lock);
184
185         return count;
186 }
187 LUSTRE_RW_ATTR(max_dirty_mb);
188
189 LUSTRE_ATTR(ost_conn_uuid, 0444, conn_uuid_show, NULL);
190 LUSTRE_RO_ATTR(conn_uuid);
191
192 LUSTRE_RW_ATTR(ping);
193
194 static int osc_cached_mb_seq_show(struct seq_file *m, void *v)
195 {
196         struct obd_device *dev = m->private;
197         struct client_obd *cli = &dev->u.cli;
198         int shift = 20 - PAGE_SHIFT;
199
200         seq_printf(m, "used_mb: %ld\n"
201                    "busy_cnt: %ld\n"
202                    "reclaim: %llu\n",
203                    (atomic_long_read(&cli->cl_lru_in_list) +
204                     atomic_long_read(&cli->cl_lru_busy)) >> shift,
205                     atomic_long_read(&cli->cl_lru_busy),
206                    cli->cl_lru_reclaim);
207
208         return 0;
209 }
210
211 /* shrink the number of caching pages to a specific number */
212 static ssize_t osc_cached_mb_seq_write(struct file *file,
213                                        const char __user *buffer,
214                                        size_t count, loff_t *off)
215 {
216         struct obd_device *dev = ((struct seq_file *)file->private_data)->private;
217         struct client_obd *cli = &dev->u.cli;
218         __s64 pages_number;
219         long rc;
220         char kernbuf[128];
221
222         if (count >= sizeof(kernbuf))
223                 return -EINVAL;
224
225         if (copy_from_user(kernbuf, buffer, count))
226                 return -EFAULT;
227         kernbuf[count] = 0;
228
229         buffer += lprocfs_find_named_value(kernbuf, "used_mb:", &count) -
230                   kernbuf;
231         rc = lprocfs_str_with_units_to_s64(buffer, count, &pages_number, 'M');
232         if (rc)
233                 return rc;
234
235         pages_number >>= PAGE_SHIFT;
236
237         if (pages_number < 0)
238                 return -ERANGE;
239
240         rc = atomic_long_read(&cli->cl_lru_in_list) - pages_number;
241         if (rc > 0) {
242                 struct lu_env *env;
243                 __u16 refcheck;
244
245                 env = cl_env_get(&refcheck);
246                 if (!IS_ERR(env)) {
247                         (void)osc_lru_shrink(env, cli, rc, true);
248                         cl_env_put(env, &refcheck);
249                 }
250         }
251
252         return count;
253 }
254
255 LPROC_SEQ_FOPS(osc_cached_mb);
256
257 static ssize_t cur_dirty_bytes_show(struct kobject *kobj,
258                                     struct attribute *attr,
259                                     char *buf)
260 {
261         struct obd_device *dev = container_of(kobj, struct obd_device,
262                                               obd_kset.kobj);
263         struct client_obd *cli = &dev->u.cli;
264         ssize_t len;
265
266         spin_lock(&cli->cl_loi_list_lock);
267         len = sprintf(buf, "%lu\n", cli->cl_dirty_pages << PAGE_SHIFT);
268         spin_unlock(&cli->cl_loi_list_lock);
269
270         return len;
271 }
272 LUSTRE_RO_ATTR(cur_dirty_bytes);
273
274 static int osc_cur_grant_bytes_seq_show(struct seq_file *m, void *v)
275 {
276         struct obd_device *dev = m->private;
277         struct client_obd *cli = &dev->u.cli;
278
279         spin_lock(&cli->cl_loi_list_lock);
280         seq_printf(m, "%lu\n", cli->cl_avail_grant);
281         spin_unlock(&cli->cl_loi_list_lock);
282         return 0;
283 }
284
285 static ssize_t osc_cur_grant_bytes_seq_write(struct file *file,
286                                              const char __user *buffer,
287                                              size_t count, loff_t *off)
288 {
289         struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
290         struct client_obd *cli = &obd->u.cli;
291         s64 val;
292         int rc;
293
294         if (obd == NULL)
295                 return 0;
296
297         rc = lprocfs_str_with_units_to_s64(buffer, count, &val, '1');
298         if (rc)
299                 return rc;
300         if (val < 0)
301                 return val;
302
303         /* this is only for shrinking grant */
304         spin_lock(&cli->cl_loi_list_lock);
305         if (val >= cli->cl_avail_grant) {
306                 spin_unlock(&cli->cl_loi_list_lock);
307                 return 0;
308         }
309
310         spin_unlock(&cli->cl_loi_list_lock);
311
312         LPROCFS_CLIMP_CHECK(obd);
313         if (cli->cl_import->imp_state == LUSTRE_IMP_FULL)
314                 rc = osc_shrink_grant_to_target(cli, val);
315         LPROCFS_CLIMP_EXIT(obd);
316
317         return rc ? rc : count;
318 }
319 LPROC_SEQ_FOPS(osc_cur_grant_bytes);
320
321 static ssize_t cur_lost_grant_bytes_show(struct kobject *kobj,
322                                          struct attribute *attr,
323                                          char *buf)
324 {
325         struct obd_device *dev = container_of(kobj, struct obd_device,
326                                               obd_kset.kobj);
327         struct client_obd *cli = &dev->u.cli;
328         ssize_t len;
329
330         spin_lock(&cli->cl_loi_list_lock);
331         len = sprintf(buf, "%lu\n", cli->cl_lost_grant);
332         spin_unlock(&cli->cl_loi_list_lock);
333         return len;
334 }
335 LUSTRE_RO_ATTR(cur_lost_grant_bytes);
336
337 static ssize_t grant_shrink_interval_show(struct kobject *kobj,
338                                           struct attribute *attr,
339                                           char *buf)
340 {
341         struct obd_device *obd = container_of(kobj, struct obd_device,
342                                               obd_kset.kobj);
343
344         return sprintf(buf, "%lld\n", obd->u.cli.cl_grant_shrink_interval);
345 }
346
347 static ssize_t grant_shrink_interval_store(struct kobject *kobj,
348                                            struct attribute *attr,
349                                            const char *buffer,
350                                            size_t count)
351 {
352         struct obd_device *obd = container_of(kobj, struct obd_device,
353                                               obd_kset.kobj);
354         unsigned int val;
355         int rc;
356
357         rc = kstrtouint(buffer, 0, &val);
358         if (rc)
359                 return rc;
360
361         if (val == 0)
362                 return -ERANGE;
363
364         obd->u.cli.cl_grant_shrink_interval = val;
365         osc_update_next_shrink(&obd->u.cli);
366         osc_schedule_grant_work();
367
368         return count;
369 }
370 LUSTRE_RW_ATTR(grant_shrink_interval);
371
372 static ssize_t checksums_show(struct kobject *kobj,
373                               struct attribute *attr,
374                               char *buf)
375 {
376         struct obd_device *obd = container_of(kobj, struct obd_device,
377                                               obd_kset.kobj);
378
379         return sprintf(buf, "%d\n", obd->u.cli.cl_checksum ? 1 : 0);
380 }
381
382 static ssize_t checksums_store(struct kobject *kobj,
383                                struct attribute *attr,
384                                const char *buffer,
385                                size_t count)
386 {
387         struct obd_device *obd = container_of(kobj, struct obd_device,
388                                               obd_kset.kobj);
389         bool val;
390         int rc;
391
392         rc = kstrtobool(buffer, &val);
393         if (rc)
394                 return rc;
395
396         obd->u.cli.cl_checksum = val;
397
398         return count;
399 }
400 LUSTRE_RW_ATTR(checksums);
401
402 static int osc_checksum_type_seq_show(struct seq_file *m, void *v)
403 {
404         struct obd_device *obd = m->private;
405         int i;
406         DECLARE_CKSUM_NAME;
407
408         if (obd == NULL)
409                 return 0;
410
411         for (i = 0; i < ARRAY_SIZE(cksum_name); i++) {
412                 if (((1 << i) & obd->u.cli.cl_supp_cksum_types) == 0)
413                         continue;
414                 if (obd->u.cli.cl_cksum_type == (1 << i))
415                         seq_printf(m, "[%s] ", cksum_name[i]);
416                 else
417                         seq_printf(m, "%s ", cksum_name[i]);
418         }
419         seq_printf(m, "\n");
420         return 0;
421 }
422
423 static ssize_t osc_checksum_type_seq_write(struct file *file,
424                                            const char __user *buffer,
425                                            size_t count, loff_t *off)
426 {
427         struct obd_device *obd = ((struct seq_file *)file->private_data)->private;
428         int i;
429         DECLARE_CKSUM_NAME;
430         char kernbuf[10];
431
432         if (obd == NULL)
433                 return 0;
434
435         if (count > sizeof(kernbuf) - 1)
436                 return -EINVAL;
437         if (copy_from_user(kernbuf, buffer, count))
438                 return -EFAULT;
439         if (count > 0 && kernbuf[count - 1] == '\n')
440                 kernbuf[count - 1] = '\0';
441         else
442                 kernbuf[count] = '\0';
443
444         for (i = 0; i < ARRAY_SIZE(cksum_name); i++) {
445                 if (((1 << i) & obd->u.cli.cl_supp_cksum_types) == 0)
446                         continue;
447                 if (!strcmp(kernbuf, cksum_name[i])) {
448                        obd->u.cli.cl_cksum_type = 1 << i;
449                        return count;
450                 }
451         }
452         return -EINVAL;
453 }
454 LPROC_SEQ_FOPS(osc_checksum_type);
455
456 static ssize_t resend_count_show(struct kobject *kobj,
457                                  struct attribute *attr,
458                                  char *buf)
459 {
460         struct obd_device *obd = container_of(kobj, struct obd_device,
461                                               obd_kset.kobj);
462
463         return sprintf(buf, "%u\n", atomic_read(&obd->u.cli.cl_resends));
464 }
465
466 static ssize_t resend_count_store(struct kobject *kobj,
467                                   struct attribute *attr,
468                                   const char *buffer,
469                                   size_t count)
470 {
471         struct obd_device *obd = container_of(kobj, struct obd_device,
472                                               obd_kset.kobj);
473         unsigned int val;
474         int rc;
475
476         rc = kstrtouint(buffer, 10, &val);
477         if (rc)
478                 return rc;
479
480         atomic_set(&obd->u.cli.cl_resends, val);
481
482         return count;
483 }
484 LUSTRE_RW_ATTR(resend_count);
485
486 static ssize_t checksum_dump_show(struct kobject *kobj,
487                                   struct attribute *attr,
488                                   char *buf)
489 {
490         struct obd_device *obd = container_of(kobj, struct obd_device,
491                                               obd_kset.kobj);
492
493         return sprintf(buf, "%d\n", obd->u.cli.cl_checksum_dump ? 1 : 0);
494 }
495
496 static ssize_t checksum_dump_store(struct kobject *kobj,
497                                    struct attribute *attr,
498                                    const char *buffer,
499                                    size_t count)
500 {
501         struct obd_device *obd = container_of(kobj, struct obd_device,
502                                               obd_kset.kobj);
503         bool val;
504         int rc;
505
506         rc = kstrtobool(buffer, &val);
507         if (rc)
508                 return rc;
509
510         obd->u.cli.cl_checksum_dump = val;
511
512         return count;
513 }
514 LUSTRE_RW_ATTR(checksum_dump);
515
516 static ssize_t contention_seconds_show(struct kobject *kobj,
517                                        struct attribute *attr,
518                                        char *buf)
519 {
520         struct obd_device *obd = container_of(kobj, struct obd_device,
521                                               obd_kset.kobj);
522         struct osc_device *od = obd2osc_dev(obd);
523
524         return sprintf(buf, "%lld\n", od->od_contention_time);
525 }
526
527 static ssize_t contention_seconds_store(struct kobject *kobj,
528                                         struct attribute *attr,
529                                         const char *buffer,
530                                         size_t count)
531 {
532         struct obd_device *obd = container_of(kobj, struct obd_device,
533                                               obd_kset.kobj);
534         struct osc_device *od = obd2osc_dev(obd);
535         unsigned int val;
536         int rc;
537
538         rc = kstrtouint(buffer, 0, &val);
539         if (rc)
540                 return rc;
541
542         od->od_contention_time = val;
543
544         return count;
545 }
546 LUSTRE_RW_ATTR(contention_seconds);
547
548 static ssize_t lockless_truncate_show(struct kobject *kobj,
549                                       struct attribute *attr,
550                                       char *buf)
551 {
552         struct obd_device *obd = container_of(kobj, struct obd_device,
553                                               obd_kset.kobj);
554         struct osc_device *od = obd2osc_dev(obd);
555
556         return sprintf(buf, "%u\n", od->od_lockless_truncate);
557 }
558
559 static ssize_t lockless_truncate_store(struct kobject *kobj,
560                                        struct attribute *attr,
561                                        const char *buffer,
562                                        size_t count)
563 {
564         struct obd_device *obd = container_of(kobj, struct obd_device,
565                                               obd_kset.kobj);
566         struct osc_device *od = obd2osc_dev(obd);
567         bool val;
568         int rc;
569
570         rc = kstrtobool(buffer, &val);
571         if (rc)
572                 return rc;
573
574         od->od_lockless_truncate = val;
575
576         return count;
577 }
578 LUSTRE_RW_ATTR(lockless_truncate);
579
580 static ssize_t destroys_in_flight_show(struct kobject *kobj,
581                                        struct attribute *attr,
582                                        char *buf)
583 {
584         struct obd_device *obd = container_of(kobj, struct obd_device,
585                                               obd_kset.kobj);
586
587         return sprintf(buf, "%u\n",
588                        atomic_read(&obd->u.cli.cl_destroy_in_flight));
589 }
590 LUSTRE_RO_ATTR(destroys_in_flight);
591
592 LPROC_SEQ_FOPS_RW_TYPE(osc, obd_max_pages_per_rpc);
593
594 LUSTRE_RW_ATTR(short_io_bytes);
595
596 #ifdef CONFIG_PROC_FS
597 static int osc_unstable_stats_seq_show(struct seq_file *m, void *v)
598 {
599         struct obd_device *dev = m->private;
600         struct client_obd *cli = &dev->u.cli;
601         long pages;
602         int mb;
603
604         pages = atomic_long_read(&cli->cl_unstable_count);
605         mb    = (pages * PAGE_SIZE) >> 20;
606
607         seq_printf(m, "unstable_pages: %20ld\n"
608                    "unstable_mb:              %10d\n",
609                    pages, mb);
610         return 0;
611 }
612 LPROC_SEQ_FOPS_RO(osc_unstable_stats);
613
614 static ssize_t idle_timeout_show(struct kobject *kobj, struct attribute *attr,
615                                  char *buf)
616 {
617         struct obd_device *obd = container_of(kobj, struct obd_device,
618                                               obd_kset.kobj);
619         struct client_obd *cli = &obd->u.cli;
620         int ret;
621
622         LPROCFS_CLIMP_CHECK(obd);
623         ret = sprintf(buf, "%u\n", cli->cl_import->imp_idle_timeout);
624         LPROCFS_CLIMP_EXIT(obd);
625
626         return ret;
627 }
628
629 static ssize_t idle_timeout_store(struct kobject *kobj, struct attribute *attr,
630                                   const char *buffer, size_t count)
631 {
632         struct obd_device *dev = container_of(kobj, struct obd_device,
633                                               obd_kset.kobj);
634         struct client_obd *cli = &dev->u.cli;
635         struct ptlrpc_request *req;
636         unsigned int idle_debug = 0;
637         unsigned int val;
638         int rc;
639
640         if (strncmp(buffer, "debug", 5) == 0) {
641                 idle_debug = D_CONSOLE;
642         } else if (strncmp(buffer, "nodebug", 6) == 0) {
643                 idle_debug = D_HA;
644         } else {
645                 rc = kstrtouint(buffer, 10, &val);
646                 if (rc)
647                         return rc;
648
649                 if (val > CONNECTION_SWITCH_MAX)
650                         return -ERANGE;
651         }
652
653         LPROCFS_CLIMP_CHECK(dev);
654         if (idle_debug) {
655                 cli->cl_import->imp_idle_debug = idle_debug;
656         } else {
657                 if (!val) {
658                         /* initiate the connection if it's in IDLE state */
659                         req = ptlrpc_request_alloc(cli->cl_import,
660                                                    &RQF_OST_STATFS);
661                         if (req != NULL)
662                                 ptlrpc_req_finished(req);
663                 }
664                 cli->cl_import->imp_idle_timeout = val;
665         }
666         LPROCFS_CLIMP_EXIT(dev);
667
668         return count;
669 }
670 LUSTRE_RW_ATTR(idle_timeout);
671
672 static ssize_t idle_connect_store(struct kobject *kobj, struct attribute *attr,
673                                   const char *buffer, size_t count)
674 {
675         struct obd_device *dev = container_of(kobj, struct obd_device,
676                                               obd_kset.kobj);
677         struct client_obd *cli = &dev->u.cli;
678         struct ptlrpc_request *req;
679
680         LPROCFS_CLIMP_CHECK(dev);
681         /* to initiate the connection if it's in IDLE state */
682         req = ptlrpc_request_alloc(cli->cl_import, &RQF_OST_STATFS);
683         if (req)
684                 ptlrpc_req_finished(req);
685         ptlrpc_pinger_force(cli->cl_import);
686         LPROCFS_CLIMP_EXIT(dev);
687
688         return count;
689 }
690 LUSTRE_WO_ATTR(idle_connect);
691
692 static ssize_t grant_shrink_show(struct kobject *kobj, struct attribute *attr,
693                                  char *buf)
694 {
695         struct obd_device *obd = container_of(kobj, struct obd_device,
696                                               obd_kset.kobj);
697         struct client_obd *cli = &obd->u.cli;
698         struct obd_connect_data *ocd;
699         ssize_t len;
700
701         LPROCFS_CLIMP_CHECK(obd);
702         ocd = &cli->cl_import->imp_connect_data;
703
704         len = snprintf(buf, PAGE_SIZE, "%d\n",
705                        !!OCD_HAS_FLAG(ocd, GRANT_SHRINK));
706         LPROCFS_CLIMP_EXIT(obd);
707
708         return len;
709 }
710
711 static ssize_t grant_shrink_store(struct kobject *kobj, struct attribute *attr,
712                                   const char *buffer, size_t count)
713 {
714         struct obd_device *dev = container_of(kobj, struct obd_device,
715                                               obd_kset.kobj);
716         struct client_obd *cli = &dev->u.cli;
717         struct obd_connect_data *ocd;
718         bool val;
719         int rc;
720
721         if (dev == NULL)
722                 return 0;
723
724         rc = kstrtobool(buffer, &val);
725         if (rc)
726                 return rc;
727
728         LPROCFS_CLIMP_CHECK(dev);
729         ocd = &cli->cl_import->imp_connect_data;
730
731         if (!val) {
732                 if (OCD_HAS_FLAG(ocd, GRANT_SHRINK))
733                         ocd->ocd_connect_flags &= ~OBD_CONNECT_GRANT_SHRINK;
734         } else {
735                 /**
736                  * server replied obd_connect_data is always bigger, so
737                  * client's imp_connect_flags_orig are always supported
738                  * by the server
739                  */
740                 if (!OCD_HAS_FLAG(ocd, GRANT_SHRINK) &&
741                     cli->cl_import->imp_connect_flags_orig &
742                     OBD_CONNECT_GRANT_SHRINK)
743                         ocd->ocd_connect_flags |= OBD_CONNECT_GRANT_SHRINK;
744         }
745
746         LPROCFS_CLIMP_EXIT(dev);
747
748         return count;
749 }
750 LUSTRE_RW_ATTR(grant_shrink);
751
752 LPROC_SEQ_FOPS_RO_TYPE(osc, connect_flags);
753 LPROC_SEQ_FOPS_RO_TYPE(osc, server_uuid);
754 LPROC_SEQ_FOPS_RO_TYPE(osc, timeouts);
755 LPROC_SEQ_FOPS_RO_TYPE(osc, state);
756
757 LPROC_SEQ_FOPS_RW_TYPE(osc, import);
758 LPROC_SEQ_FOPS_RW_TYPE(osc, pinger_recov);
759
760 struct lprocfs_vars lprocfs_osc_obd_vars[] = {
761         { .name =       "connect_flags",
762           .fops =       &osc_connect_flags_fops         },
763         { .name =       "ost_server_uuid",
764           .fops =       &osc_server_uuid_fops           },
765         { .name =       "max_pages_per_rpc",
766           .fops =       &osc_obd_max_pages_per_rpc_fops },
767         { .name =       "osc_cached_mb",
768           .fops =       &osc_cached_mb_fops             },
769         { .name =       "cur_grant_bytes",
770           .fops =       &osc_cur_grant_bytes_fops       },
771         { .name =       "checksum_type",
772           .fops =       &osc_checksum_type_fops         },
773         { .name =       "timeouts",
774           .fops =       &osc_timeouts_fops              },
775         { .name =       "import",
776           .fops =       &osc_import_fops                },
777         { .name =       "state",
778           .fops =       &osc_state_fops                 },
779         { .name =       "pinger_recov",
780           .fops =       &osc_pinger_recov_fops          },
781         { .name =       "unstable_stats",
782           .fops =       &osc_unstable_stats_fops        },
783         { NULL }
784 };
785
786 static int osc_rpc_stats_seq_show(struct seq_file *seq, void *v)
787 {
788         struct timespec64 now;
789         struct obd_device *dev = seq->private;
790         struct client_obd *cli = &dev->u.cli;
791         unsigned long read_tot = 0, write_tot = 0, read_cum, write_cum;
792         int i;
793
794         ktime_get_real_ts64(&now);
795
796         spin_lock(&cli->cl_loi_list_lock);
797
798         seq_printf(seq, "snapshot_time:         %lld.%09lu (secs.nsecs)\n",
799                    (s64)now.tv_sec, now.tv_nsec);
800         seq_printf(seq, "read RPCs in flight:  %d\n",
801                    cli->cl_r_in_flight);
802         seq_printf(seq, "write RPCs in flight: %d\n",
803                    cli->cl_w_in_flight);
804         seq_printf(seq, "pending write pages:  %d\n",
805                    atomic_read(&cli->cl_pending_w_pages));
806         seq_printf(seq, "pending read pages:   %d\n",
807                    atomic_read(&cli->cl_pending_r_pages));
808
809         seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
810         seq_printf(seq, "pages per rpc         rpcs   %% cum %% |");
811         seq_printf(seq, "       rpcs   %% cum %%\n");
812
813         read_tot = lprocfs_oh_sum(&cli->cl_read_page_hist);
814         write_tot = lprocfs_oh_sum(&cli->cl_write_page_hist);
815
816         read_cum = 0;
817         write_cum = 0;
818         for (i = 0; i < OBD_HIST_MAX; i++) {
819                 unsigned long r = cli->cl_read_page_hist.oh_buckets[i];
820                 unsigned long w = cli->cl_write_page_hist.oh_buckets[i];
821
822                 read_cum += r;
823                 write_cum += w;
824                 seq_printf(seq, "%d:\t\t%10lu %3u %3u   | %10lu %3u %3u\n",
825                            1 << i, r, pct(r, read_tot),
826                            pct(read_cum, read_tot), w,
827                            pct(w, write_tot),
828                            pct(write_cum, write_tot));
829                 if (read_cum == read_tot && write_cum == write_tot)
830                         break;
831         }
832
833         seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
834         seq_printf(seq, "rpcs in flight        rpcs   %% cum %% |");
835         seq_printf(seq, "       rpcs   %% cum %%\n");
836
837         read_tot = lprocfs_oh_sum(&cli->cl_read_rpc_hist);
838         write_tot = lprocfs_oh_sum(&cli->cl_write_rpc_hist);
839
840         read_cum = 0;
841         write_cum = 0;
842         for (i = 0; i < OBD_HIST_MAX; i++) {
843                 unsigned long r = cli->cl_read_rpc_hist.oh_buckets[i];
844                 unsigned long w = cli->cl_write_rpc_hist.oh_buckets[i];
845                 read_cum += r;
846                 write_cum += w;
847                 seq_printf(seq, "%d:\t\t%10lu %3u %3u   | %10lu %3u %3u\n",
848                            i, r, pct(r, read_tot),
849                            pct(read_cum, read_tot), w,
850                            pct(w, write_tot),
851                            pct(write_cum, write_tot));
852                 if (read_cum == read_tot && write_cum == write_tot)
853                         break;
854         }
855
856         seq_printf(seq, "\n\t\t\tread\t\t\twrite\n");
857         seq_printf(seq, "offset                rpcs   %% cum %% |");
858         seq_printf(seq, "       rpcs   %% cum %%\n");
859
860         read_tot = lprocfs_oh_sum(&cli->cl_read_offset_hist);
861         write_tot = lprocfs_oh_sum(&cli->cl_write_offset_hist);
862
863         read_cum = 0;
864         write_cum = 0;
865         for (i = 0; i < OBD_HIST_MAX; i++) {
866                 unsigned long r = cli->cl_read_offset_hist.oh_buckets[i];
867                 unsigned long w = cli->cl_write_offset_hist.oh_buckets[i];
868                 read_cum += r;
869                 write_cum += w;
870                 seq_printf(seq, "%d:\t\t%10lu %3u %3u   | %10lu %3u %3u\n",
871                            (i == 0) ? 0 : 1 << (i - 1),
872                            r, pct(r, read_tot), pct(read_cum, read_tot),
873                            w, pct(w, write_tot), pct(write_cum, write_tot));
874                 if (read_cum == read_tot && write_cum == write_tot)
875                         break;
876         }
877
878         spin_unlock(&cli->cl_loi_list_lock);
879
880         return 0;
881 }
882
883 static ssize_t osc_rpc_stats_seq_write(struct file *file,
884                                        const char __user *buf,
885                                        size_t len, loff_t *off)
886 {
887         struct seq_file *seq = file->private_data;
888         struct obd_device *dev = seq->private;
889         struct client_obd *cli = &dev->u.cli;
890
891         lprocfs_oh_clear(&cli->cl_read_rpc_hist);
892         lprocfs_oh_clear(&cli->cl_write_rpc_hist);
893         lprocfs_oh_clear(&cli->cl_read_page_hist);
894         lprocfs_oh_clear(&cli->cl_write_page_hist);
895         lprocfs_oh_clear(&cli->cl_read_offset_hist);
896         lprocfs_oh_clear(&cli->cl_write_offset_hist);
897
898         return len;
899 }
900 LPROC_SEQ_FOPS(osc_rpc_stats);
901
902 static int osc_stats_seq_show(struct seq_file *seq, void *v)
903 {
904         struct timespec64 now;
905         struct obd_device *dev = seq->private;
906         struct osc_stats *stats = &obd2osc_dev(dev)->od_stats;
907
908         ktime_get_real_ts64(&now);
909
910         seq_printf(seq, "snapshot_time:         %lld.%09lu (secs.nsecs)\n",
911                    (s64)now.tv_sec, now.tv_nsec);
912         seq_printf(seq, "lockless_write_bytes\t\t%llu\n",
913                    stats->os_lockless_writes);
914         seq_printf(seq, "lockless_read_bytes\t\t%llu\n",
915                    stats->os_lockless_reads);
916         seq_printf(seq, "lockless_truncate\t\t%llu\n",
917                    stats->os_lockless_truncates);
918         return 0;
919 }
920
921 static ssize_t osc_stats_seq_write(struct file *file,
922                                    const char __user *buf,
923                                    size_t len, loff_t *off)
924 {
925         struct seq_file *seq = file->private_data;
926         struct obd_device *dev = seq->private;
927         struct osc_stats *stats = &obd2osc_dev(dev)->od_stats;
928
929         memset(stats, 0, sizeof(*stats));
930         return len;
931 }
932
933 LPROC_SEQ_FOPS(osc_stats);
934
935 int lprocfs_osc_attach_seqstat(struct obd_device *dev)
936 {
937         int rc;
938
939         rc = lprocfs_seq_create(dev->obd_proc_entry, "osc_stats", 0644,
940                                 &osc_stats_fops, dev);
941         if (rc == 0)
942                 rc = lprocfs_obd_seq_create(dev, "rpc_stats", 0644,
943                                             &osc_rpc_stats_fops, dev);
944
945         return rc;
946 }
947 #endif /* CONFIG_PROC_FS */
948
949 static struct attribute *osc_attrs[] = {
950         &lustre_attr_active.attr,
951         &lustre_attr_checksums.attr,
952         &lustre_attr_checksum_dump.attr,
953         &lustre_attr_contention_seconds.attr,
954         &lustre_attr_cur_dirty_bytes.attr,
955         &lustre_attr_cur_lost_grant_bytes.attr,
956         &lustre_attr_destroys_in_flight.attr,
957         &lustre_attr_grant_shrink_interval.attr,
958         &lustre_attr_lockless_truncate.attr,
959         &lustre_attr_max_dirty_mb.attr,
960         &lustre_attr_max_rpcs_in_flight.attr,
961         &lustre_attr_short_io_bytes.attr,
962         &lustre_attr_resend_count.attr,
963         &lustre_attr_ost_conn_uuid.attr,
964         &lustre_attr_conn_uuid.attr,
965         &lustre_attr_ping.attr,
966         &lustre_attr_idle_timeout.attr,
967         &lustre_attr_idle_connect.attr,
968         &lustre_attr_grant_shrink.attr,
969         NULL,
970 };
971
972 int osc_tunables_init(struct obd_device *obd)
973 {
974 #if defined(CONFIG_PROC_FS) && defined(HAVE_SERVER_SUPPORT)
975         struct obd_type *type;
976 #endif
977         int rc;
978
979         obd->obd_vars = lprocfs_osc_obd_vars;
980 #if defined(CONFIG_PROC_FS) && defined(HAVE_SERVER_SUPPORT)
981         /* If this is true then both client (osc) and server (osp) are on the
982          * same node. The osp layer if loaded first will register the osc proc
983          * directory. In that case this obd_device will be attached its proc
984          * tree to type->typ_procsym instead of obd->obd_type->typ_procroot.
985          */
986         type = class_search_type(LUSTRE_OSP_NAME);
987         if (type && type->typ_procsym) {
988                 obd->obd_proc_entry = lprocfs_register(obd->obd_name,
989                                                        type->typ_procsym,
990                                                        obd->obd_vars, obd);
991                 if (IS_ERR(obd->obd_proc_entry)) {
992                         rc = PTR_ERR(obd->obd_proc_entry);
993                         CERROR("error %d setting up lprocfs for %s\n", rc,
994                                obd->obd_name);
995                         obd->obd_proc_entry = NULL;
996                 }
997         }
998 #endif
999         obd->obd_ktype.default_attrs = osc_attrs;
1000         rc = lprocfs_obd_setup(obd, false);
1001         if (rc)
1002                 return rc;
1003 #ifdef CONFIG_PROC_FS
1004         /* If the basic OSC proc tree construction succeeded then
1005          * lets do the rest.
1006          */
1007         rc = lprocfs_osc_attach_seqstat(obd);
1008         if (rc)
1009                 goto obd_cleanup;
1010
1011 #endif /* CONFIG_PROC_FS */
1012         rc = sptlrpc_lprocfs_cliobd_attach(obd);
1013         if (rc)
1014                 goto obd_cleanup;
1015
1016         ptlrpc_lprocfs_register_obd(obd);
1017 obd_cleanup:
1018         if (rc)
1019                 lprocfs_obd_cleanup(obd);
1020         return rc;
1021 }