Whamcloud - gitweb
LU-12043 llite: switch to use ll_fsname directly
[fs/lustre-release.git] / lustre / llite / lproc_llite.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) 2012, 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_LLITE
33
34 #include <linux/version.h>
35 #include <linux/user_namespace.h>
36 #ifdef HAVE_UIDGID_HEADER
37 # include <linux/uidgid.h>
38 #endif
39 #include <uapi/linux/lustre/lustre_param.h>
40 #include <lprocfs_status.h>
41 #include <obd_support.h>
42
43 #include "llite_internal.h"
44 #include "vvp_internal.h"
45
46 static struct kobject *llite_kobj;
47 static struct dentry *llite_root;
48
49 static void llite_kobj_release(struct kobject *kobj)
50 {
51         if (!IS_ERR_OR_NULL(llite_root)) {
52                 debugfs_remove(llite_root);
53                 llite_root = NULL;
54         }
55
56         kfree(kobj);
57 }
58
59 static struct kobj_type llite_kobj_ktype = {
60         .release        = llite_kobj_release,
61         .sysfs_ops      = &lustre_sysfs_ops,
62 };
63
64 int llite_tunables_register(void)
65 {
66         int rc;
67
68         llite_kobj = kzalloc(sizeof(*llite_kobj), GFP_KERNEL);
69         if (!llite_kobj)
70                 return -ENOMEM;
71
72         llite_kobj->kset = lustre_kset;
73         rc = kobject_init_and_add(llite_kobj, &llite_kobj_ktype,
74                                   &lustre_kset->kobj, "%s", "llite");
75         if (rc)
76                 goto free_kobj;
77
78         llite_root = debugfs_create_dir("llite", debugfs_lustre_root);
79         if (IS_ERR_OR_NULL(llite_root)) {
80                 rc = llite_root ? PTR_ERR(llite_root) : -ENOMEM;
81                 llite_root = NULL;
82 free_kobj:
83                 kobject_put(llite_kobj);
84                 llite_kobj = NULL;
85         }
86
87         return rc;
88 }
89
90 void llite_tunables_unregister(void)
91 {
92         kobject_put(llite_kobj);
93         llite_kobj = NULL;
94 }
95
96 /* <debugfs>/lustre/llite mount point registration */
97 static const struct file_operations ll_rw_extents_stats_fops;
98 static const struct file_operations ll_rw_extents_stats_pp_fops;
99 static const struct file_operations ll_rw_offset_stats_fops;
100
101 /**
102  * ll_stats_pid_write() - Determine if stats collection should be enabled
103  * @buf: Buffer containing the data written
104  * @len: Number of bytes in the buffer
105  *
106  * Several proc files begin collecting stats when a value is written, and stop
107  * collecting when either '0' or 'disable' is written. This function checks the
108  * written value to see if collection should be enabled or disabled.
109  *
110  * Return: If '0' or 'disable' is provided, 0 is returned. If the text
111  * equivalent of a number is written, that number is returned. Otherwise,
112  * 1 is returned. Non-zero return values indicate collection should be enabled.
113  */
114 static s64 ll_stats_pid_write(const char __user *buf, size_t len)
115 {
116         unsigned long long value = 1;
117         char kernbuf[16];
118         int rc;
119
120         rc = kstrtoull_from_user(buf, len, 0, &value);
121         if (rc < 0 && len < sizeof(kernbuf)) {
122                 if (copy_from_user(kernbuf, buf, len))
123                         return -EFAULT;
124                 kernbuf[len] = 0;
125
126                 if (kernbuf[len - 1] == '\n')
127                         kernbuf[len - 1] = 0;
128
129                 if (strncasecmp(kernbuf, "disable", 7) == 0)
130                         value = 0;
131         }
132
133         return value;
134 }
135
136 static ssize_t blocksize_show(struct kobject *kobj, struct attribute *attr,
137                               char *buf)
138 {
139         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
140                                               ll_kset.kobj);
141         struct obd_statfs osfs;
142         int rc;
143
144         rc = ll_statfs_internal(sbi, &osfs, OBD_STATFS_NODELAY);
145         if (rc)
146                 return rc;
147
148         return sprintf(buf, "%u\n", osfs.os_bsize);
149 }
150 LUSTRE_RO_ATTR(blocksize);
151
152 static ssize_t stat_blocksize_show(struct kobject *kobj, struct attribute *attr,
153                                    char *buf)
154 {
155         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
156                                               ll_kset.kobj);
157
158         return sprintf(buf, "%u\n", sbi->ll_stat_blksize);
159 }
160
161 static ssize_t stat_blocksize_store(struct kobject *kobj,
162                                     struct attribute *attr,
163                                     const char *buffer,
164                                     size_t count)
165 {
166         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
167                                               ll_kset.kobj);
168         unsigned int val;
169         int rc;
170
171         rc = kstrtouint(buffer, 10, &val);
172         if (rc)
173                 return rc;
174
175         if (val != 0 && (val < PAGE_SIZE || (val & (val - 1))) != 0)
176                 return -ERANGE;
177
178         sbi->ll_stat_blksize = val;
179
180         return count;
181 }
182 LUSTRE_RW_ATTR(stat_blocksize);
183
184 static ssize_t kbytestotal_show(struct kobject *kobj, struct attribute *attr,
185                                 char *buf)
186 {
187         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
188                                               ll_kset.kobj);
189         struct obd_statfs osfs;
190         u32 blk_size;
191         u64 result;
192         int rc;
193
194         rc = ll_statfs_internal(sbi, &osfs, OBD_STATFS_NODELAY);
195         if (rc)
196                 return rc;
197
198         blk_size = osfs.os_bsize >> 10;
199         result = osfs.os_blocks;
200
201         while (blk_size >>= 1)
202                 result <<= 1;
203
204         return sprintf(buf, "%llu\n", result);
205 }
206 LUSTRE_RO_ATTR(kbytestotal);
207
208 static ssize_t kbytesfree_show(struct kobject *kobj, struct attribute *attr,
209                                char *buf)
210 {
211         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
212                                               ll_kset.kobj);
213         struct obd_statfs osfs;
214         u32 blk_size;
215         u64 result;
216         int rc;
217
218         rc = ll_statfs_internal(sbi, &osfs, OBD_STATFS_NODELAY);
219         if (rc)
220                 return rc;
221
222         blk_size = osfs.os_bsize >> 10;
223         result = osfs.os_bfree;
224
225         while (blk_size >>= 1)
226                 result <<= 1;
227
228         return sprintf(buf, "%llu\n", result);
229 }
230 LUSTRE_RO_ATTR(kbytesfree);
231
232 static ssize_t kbytesavail_show(struct kobject *kobj, struct attribute *attr,
233                                 char *buf)
234 {
235         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
236                                               ll_kset.kobj);
237         struct obd_statfs osfs;
238         u32 blk_size;
239         u64 result;
240         int rc;
241
242         rc = ll_statfs_internal(sbi, &osfs, OBD_STATFS_NODELAY);
243         if (rc)
244                 return rc;
245
246         blk_size = osfs.os_bsize >> 10;
247         result = osfs.os_bavail;
248
249         while (blk_size >>= 1)
250                 result <<= 1;
251
252         return sprintf(buf, "%llu\n", result);
253 }
254 LUSTRE_RO_ATTR(kbytesavail);
255
256 static ssize_t filestotal_show(struct kobject *kobj, struct attribute *attr,
257                                char *buf)
258 {
259         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
260                                               ll_kset.kobj);
261         struct obd_statfs osfs;
262         int rc;
263
264         rc = ll_statfs_internal(sbi, &osfs, OBD_STATFS_NODELAY);
265         if (rc)
266                 return rc;
267
268         return sprintf(buf, "%llu\n", osfs.os_files);
269 }
270 LUSTRE_RO_ATTR(filestotal);
271
272 static ssize_t filesfree_show(struct kobject *kobj, struct attribute *attr,
273                               char *buf)
274 {
275         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
276                                               ll_kset.kobj);
277         struct obd_statfs osfs;
278         int rc;
279
280         rc = ll_statfs_internal(sbi, &osfs, OBD_STATFS_NODELAY);
281         if (rc)
282                 return rc;
283
284         return sprintf(buf, "%llu\n", osfs.os_ffree);
285 }
286 LUSTRE_RO_ATTR(filesfree);
287
288 static ssize_t client_type_show(struct kobject *kobj, struct attribute *attr,
289                                 char *buf)
290 {
291         return sprintf(buf, "local client\n");
292 }
293 LUSTRE_RO_ATTR(client_type);
294
295 static ssize_t fstype_show(struct kobject *kobj, struct attribute *attr,
296                            char *buf)
297 {
298         return sprintf(buf, "lustre\n");
299 }
300 LUSTRE_RO_ATTR(fstype);
301
302 static ssize_t uuid_show(struct kobject *kobj, struct attribute *attr,
303                          char *buf)
304 {
305         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
306                                               ll_kset.kobj);
307
308         return sprintf(buf, "%s\n", sbi->ll_sb_uuid.uuid);
309 }
310 LUSTRE_RO_ATTR(uuid);
311
312 static int ll_site_stats_seq_show(struct seq_file *m, void *v)
313 {
314         struct super_block *sb = m->private;
315
316         /*
317          * See description of statistical counters in struct cl_site, and
318          * struct lu_site.
319          */
320         return cl_site_stats_print(lu2cl_site(ll_s2sbi(sb)->ll_site), m);
321 }
322
323 LDEBUGFS_SEQ_FOPS_RO(ll_site_stats);
324
325 static int ll_max_readahead_mb_seq_show(struct seq_file *m, void *v)
326 {
327         struct super_block *sb = m->private;
328         struct ll_sb_info *sbi = ll_s2sbi(sb);
329         long pages_number;
330         int mult;
331
332         spin_lock(&sbi->ll_lock);
333         pages_number = sbi->ll_ra_info.ra_max_pages;
334         spin_unlock(&sbi->ll_lock);
335
336         mult = 1 << (20 - PAGE_SHIFT);
337         return lprocfs_seq_read_frac_helper(m, pages_number, mult);
338 }
339
340 static ssize_t
341 ll_max_readahead_mb_seq_write(struct file *file, const char __user *buffer,
342                               size_t count, loff_t *off)
343 {
344         struct seq_file *m = file->private_data;
345         struct super_block *sb = m->private;
346         struct ll_sb_info *sbi = ll_s2sbi(sb);
347         __s64 pages_number;
348         int rc;
349
350         rc = lprocfs_str_with_units_to_s64(buffer, count, &pages_number, 'M');
351         if (rc)
352                 return rc;
353
354         pages_number >>= PAGE_SHIFT;
355
356         if (pages_number < 0 || pages_number > totalram_pages / 2) {
357                 /* 1/2 of RAM */
358                 CERROR("%s: can't set max_readahead_mb=%lu > %luMB\n",
359                        sbi->ll_fsname,
360                        (unsigned long)pages_number >> (20 - PAGE_SHIFT),
361                        totalram_pages >> (20 - PAGE_SHIFT + 1));
362                 return -ERANGE;
363         }
364
365         spin_lock(&sbi->ll_lock);
366         sbi->ll_ra_info.ra_max_pages = pages_number;
367         spin_unlock(&sbi->ll_lock);
368
369         return count;
370 }
371
372 LDEBUGFS_SEQ_FOPS(ll_max_readahead_mb);
373
374 static int ll_max_readahead_per_file_mb_seq_show(struct seq_file *m, void *v)
375 {
376         struct super_block *sb = m->private;
377         struct ll_sb_info *sbi = ll_s2sbi(sb);
378         long pages_number;
379         int mult;
380
381         spin_lock(&sbi->ll_lock);
382         pages_number = sbi->ll_ra_info.ra_max_pages_per_file;
383         spin_unlock(&sbi->ll_lock);
384
385         mult = 1 << (20 - PAGE_SHIFT);
386         return lprocfs_seq_read_frac_helper(m, pages_number, mult);
387 }
388
389 static ssize_t
390 ll_max_readahead_per_file_mb_seq_write(struct file *file,
391                                        const char __user *buffer,
392                                        size_t count, loff_t *off)
393 {
394         struct seq_file *m = file->private_data;
395         struct super_block *sb = m->private;
396         struct ll_sb_info *sbi = ll_s2sbi(sb);
397         int rc;
398         __s64 pages_number;
399
400         rc = lprocfs_str_with_units_to_s64(buffer, count, &pages_number, 'M');
401         if (rc)
402                 return rc;
403
404         pages_number >>= PAGE_SHIFT;
405
406         if (pages_number < 0 || pages_number > sbi->ll_ra_info.ra_max_pages) {
407                 CERROR("%s: can't set max_readahead_per_file_mb=%lu > "
408                        "max_read_ahead_mb=%lu\n", sbi->ll_fsname,
409                        (unsigned long)pages_number >> (20 - PAGE_SHIFT),
410                        sbi->ll_ra_info.ra_max_pages >> (20 - PAGE_SHIFT));
411                 return -ERANGE;
412         }
413
414         spin_lock(&sbi->ll_lock);
415         sbi->ll_ra_info.ra_max_pages_per_file = pages_number;
416         spin_unlock(&sbi->ll_lock);
417
418         return count;
419 }
420
421 LDEBUGFS_SEQ_FOPS(ll_max_readahead_per_file_mb);
422
423 static int ll_max_read_ahead_whole_mb_seq_show(struct seq_file *m, void *v)
424 {
425         struct super_block *sb = m->private;
426         struct ll_sb_info *sbi = ll_s2sbi(sb);
427         long pages_number;
428         int mult;
429
430         spin_lock(&sbi->ll_lock);
431         pages_number = sbi->ll_ra_info.ra_max_read_ahead_whole_pages;
432         spin_unlock(&sbi->ll_lock);
433
434         mult = 1 << (20 - PAGE_SHIFT);
435         return lprocfs_seq_read_frac_helper(m, pages_number, mult);
436 }
437
438 static ssize_t
439 ll_max_read_ahead_whole_mb_seq_write(struct file *file,
440                                      const char __user *buffer,
441                                      size_t count, loff_t *off)
442 {
443         struct seq_file *m = file->private_data;
444         struct super_block *sb = m->private;
445         struct ll_sb_info *sbi = ll_s2sbi(sb);
446         int rc;
447         __s64 pages_number;
448
449         rc = lprocfs_str_with_units_to_s64(buffer, count, &pages_number, 'M');
450         if (rc)
451                 return rc;
452
453         pages_number >>= PAGE_SHIFT;
454
455         /* Cap this at the current max readahead window size, the readahead
456          * algorithm does this anyway so it's pointless to set it larger. */
457         if (pages_number < 0 ||
458             pages_number > sbi->ll_ra_info.ra_max_pages_per_file) {
459                 int pages_shift = 20 - PAGE_SHIFT;
460                 CERROR("%s: can't set max_read_ahead_whole_mb=%lu > "
461                        "max_read_ahead_per_file_mb=%lu\n",
462                        sbi->ll_fsname,
463                        (unsigned long)pages_number >> pages_shift,
464                        sbi->ll_ra_info.ra_max_pages_per_file >> pages_shift);
465                 return -ERANGE;
466         }
467
468         spin_lock(&sbi->ll_lock);
469         sbi->ll_ra_info.ra_max_read_ahead_whole_pages = pages_number;
470         spin_unlock(&sbi->ll_lock);
471
472         return count;
473 }
474
475 LDEBUGFS_SEQ_FOPS(ll_max_read_ahead_whole_mb);
476
477 static int ll_max_cached_mb_seq_show(struct seq_file *m, void *v)
478 {
479         struct super_block     *sb    = m->private;
480         struct ll_sb_info      *sbi   = ll_s2sbi(sb);
481         struct cl_client_cache *cache = sbi->ll_cache;
482         int shift = 20 - PAGE_SHIFT;
483         long max_cached_mb;
484         long unused_mb;
485
486         max_cached_mb = cache->ccc_lru_max >> shift;
487         unused_mb = atomic_long_read(&cache->ccc_lru_left) >> shift;
488         seq_printf(m, "users: %d\n"
489                       "max_cached_mb: %ld\n"
490                       "used_mb: %ld\n"
491                       "unused_mb: %ld\n"
492                       "reclaim_count: %u\n",
493                    atomic_read(&cache->ccc_users),
494                    max_cached_mb,
495                    max_cached_mb - unused_mb,
496                    unused_mb,
497                    cache->ccc_lru_shrinkers);
498         return 0;
499 }
500
501 static ssize_t ll_max_cached_mb_seq_write(struct file *file,
502                                           const char __user *buffer,
503                                           size_t count, loff_t *off)
504 {
505         struct seq_file *m = file->private_data;
506         struct super_block *sb = m->private;
507         struct ll_sb_info *sbi = ll_s2sbi(sb);
508         struct cl_client_cache *cache = sbi->ll_cache;
509         struct lu_env *env;
510         long diff = 0;
511         long nrpages = 0;
512         __u16 refcheck;
513         __s64 pages_number;
514         int rc;
515         char kernbuf[128];
516
517         ENTRY;
518         if (count >= sizeof(kernbuf))
519                 RETURN(-EINVAL);
520
521         if (copy_from_user(kernbuf, buffer, count))
522                 RETURN(-EFAULT);
523         kernbuf[count] = 0;
524
525         buffer += lprocfs_find_named_value(kernbuf, "max_cached_mb:", &count) -
526                   kernbuf;
527         rc = lprocfs_str_with_units_to_s64(buffer, count, &pages_number, 'M');
528         if (rc)
529                 RETURN(rc);
530
531         pages_number >>= PAGE_SHIFT;
532
533         if (pages_number < 0 || pages_number > totalram_pages) {
534                 CERROR("%s: can't set max cache more than %lu MB\n",
535                        sbi->ll_fsname,
536                        totalram_pages >> (20 - PAGE_SHIFT));
537                 RETURN(-ERANGE);
538         }
539         /* Allow enough cache so clients can make well-formed RPCs */
540         pages_number = max_t(long, pages_number, PTLRPC_MAX_BRW_PAGES);
541
542         spin_lock(&sbi->ll_lock);
543         diff = pages_number - cache->ccc_lru_max;
544         spin_unlock(&sbi->ll_lock);
545
546         /* easy - add more LRU slots. */
547         if (diff >= 0) {
548                 atomic_long_add(diff, &cache->ccc_lru_left);
549                 GOTO(out, rc = 0);
550         }
551
552         env = cl_env_get(&refcheck);
553         if (IS_ERR(env))
554                 RETURN(PTR_ERR(env));
555
556         diff = -diff;
557         while (diff > 0) {
558                 long tmp;
559
560                 /* reduce LRU budget from free slots. */
561                 do {
562                         long ov, nv;
563
564                         ov = atomic_long_read(&cache->ccc_lru_left);
565                         if (ov == 0)
566                                 break;
567
568                         nv = ov > diff ? ov - diff : 0;
569                         rc = atomic_long_cmpxchg(&cache->ccc_lru_left, ov, nv);
570                         if (likely(ov == rc)) {
571                                 diff -= ov - nv;
572                                 nrpages += ov - nv;
573                                 break;
574                         }
575                 } while (1);
576
577                 if (diff <= 0)
578                         break;
579
580                 if (sbi->ll_dt_exp == NULL) { /* being initialized */
581                         rc = -ENODEV;
582                         break;
583                 }
584
585                 /* difficult - have to ask OSCs to drop LRU slots. */
586                 tmp = diff << 1;
587                 rc = obd_set_info_async(env, sbi->ll_dt_exp,
588                                 sizeof(KEY_CACHE_LRU_SHRINK),
589                                 KEY_CACHE_LRU_SHRINK,
590                                 sizeof(tmp), &tmp, NULL);
591                 if (rc < 0)
592                         break;
593         }
594         cl_env_put(env, &refcheck);
595
596 out:
597         if (rc >= 0) {
598                 spin_lock(&sbi->ll_lock);
599                 cache->ccc_lru_max = pages_number;
600                 spin_unlock(&sbi->ll_lock);
601                 rc = count;
602         } else {
603                 atomic_long_add(nrpages, &cache->ccc_lru_left);
604         }
605         return rc;
606 }
607
608 LDEBUGFS_SEQ_FOPS(ll_max_cached_mb);
609
610 static ssize_t checksums_show(struct kobject *kobj, struct attribute *attr,
611                               char *buf)
612 {
613         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
614                                               ll_kset.kobj);
615
616         return sprintf(buf, "%u\n", (sbi->ll_flags & LL_SBI_CHECKSUM) ? 1 : 0);
617 }
618
619 static ssize_t checksums_store(struct kobject *kobj, struct attribute *attr,
620                                const char *buffer, size_t count)
621 {
622         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
623                                               ll_kset.kobj);
624         bool val;
625         int tmp;
626         int rc;
627
628         if (!sbi->ll_dt_exp)
629                 /* Not set up yet */
630                 return -EAGAIN;
631
632         rc = kstrtobool(buffer, &val);
633         if (rc)
634                 return rc;
635         if (val)
636                 sbi->ll_flags |= LL_SBI_CHECKSUM;
637         else
638                 sbi->ll_flags &= ~LL_SBI_CHECKSUM;
639         tmp = val;
640
641         rc = obd_set_info_async(NULL, sbi->ll_dt_exp, sizeof(KEY_CHECKSUM),
642                                 KEY_CHECKSUM, sizeof(tmp), &tmp, NULL);
643         if (rc)
644                 CWARN("Failed to set OSC checksum flags: %d\n", rc);
645
646         return count;
647 }
648 LUSTRE_RW_ATTR(checksums);
649
650 LUSTRE_ATTR(checksum_pages, 0644, checksums_show, checksums_store);
651
652 static ssize_t ll_rd_track_id(struct kobject *kobj, char *buf,
653                               enum stats_track_type type)
654 {
655         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
656                                               ll_kset.kobj);
657
658         if (sbi->ll_stats_track_type == type)
659                 return sprintf(buf, "%d\n", sbi->ll_stats_track_id);
660         else if (sbi->ll_stats_track_type == STATS_TRACK_ALL)
661                 return sprintf(buf, "0 (all)\n");
662
663         return sprintf(buf, "untracked\n");
664 }
665
666 static ssize_t ll_wr_track_id(struct kobject *kobj, const char *buffer,
667                               size_t count, enum stats_track_type type)
668 {
669         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
670                                               ll_kset.kobj);
671         unsigned long pid;
672         int rc;
673
674         rc = kstrtoul(buffer, 10, &pid);
675         if (rc)
676                 return rc;
677
678         sbi->ll_stats_track_id = pid;
679         if (pid == 0)
680                 sbi->ll_stats_track_type = STATS_TRACK_ALL;
681         else
682                 sbi->ll_stats_track_type = type;
683         lprocfs_clear_stats(sbi->ll_stats);
684         return count;
685 }
686
687 static ssize_t stats_track_pid_show(struct kobject *kobj,
688                                     struct attribute *attr,
689                                     char *buf)
690 {
691         return ll_rd_track_id(kobj, buf, STATS_TRACK_PID);
692 }
693
694 static ssize_t stats_track_pid_store(struct kobject *kobj,
695                                      struct attribute *attr,
696                                      const char *buffer,
697                                      size_t count)
698 {
699         return ll_wr_track_id(kobj, buffer, count, STATS_TRACK_PID);
700 }
701 LUSTRE_RW_ATTR(stats_track_pid);
702
703 static ssize_t stats_track_ppid_show(struct kobject *kobj,
704                                      struct attribute *attr,
705                                      char *buf)
706 {
707         return ll_rd_track_id(kobj, buf, STATS_TRACK_PPID);
708 }
709
710 static ssize_t stats_track_ppid_store(struct kobject *kobj,
711                                       struct attribute *attr,
712                                       const char *buffer,
713                                       size_t count)
714 {
715         return ll_wr_track_id(kobj, buffer, count, STATS_TRACK_PPID);
716 }
717 LUSTRE_RW_ATTR(stats_track_ppid);
718
719 static ssize_t stats_track_gid_show(struct kobject *kobj,
720                                     struct attribute *attr,
721                                     char *buf)
722 {
723         return ll_rd_track_id(kobj, buf, STATS_TRACK_GID);
724 }
725
726 static ssize_t stats_track_gid_store(struct kobject *kobj,
727                                      struct attribute *attr,
728                                      const char *buffer,
729                                      size_t count)
730 {
731         return ll_wr_track_id(kobj, buffer, count, STATS_TRACK_GID);
732 }
733 LUSTRE_RW_ATTR(stats_track_gid);
734
735 static ssize_t statahead_running_max_show(struct kobject *kobj,
736                                           struct attribute *attr,
737                                           char *buf)
738 {
739         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
740                                               ll_kset.kobj);
741
742         return snprintf(buf, 16, "%u\n", sbi->ll_sa_running_max);
743 }
744
745 static ssize_t statahead_running_max_store(struct kobject *kobj,
746                                            struct attribute *attr,
747                                            const char *buffer,
748                                            size_t count)
749 {
750         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
751                                               ll_kset.kobj);
752         unsigned long val;
753         int rc;
754
755         rc = kstrtoul(buffer, 0, &val);
756         if (rc)
757                 return rc;
758
759         if (val <= LL_SA_RUNNING_MAX) {
760                 sbi->ll_sa_running_max = val;
761                 return count;
762         }
763
764         CERROR("Bad statahead_running_max value %lu. Valid values "
765                "are in the range [0, %d]\n", val, LL_SA_RUNNING_MAX);
766
767         return -ERANGE;
768 }
769 LUSTRE_RW_ATTR(statahead_running_max);
770
771 static ssize_t statahead_max_show(struct kobject *kobj,
772                                   struct attribute *attr,
773                                   char *buf)
774 {
775         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
776                                               ll_kset.kobj);
777
778         return sprintf(buf, "%u\n", sbi->ll_sa_max);
779 }
780
781 static ssize_t statahead_max_store(struct kobject *kobj,
782                                    struct attribute *attr,
783                                    const char *buffer,
784                                    size_t count)
785 {
786         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
787                                               ll_kset.kobj);
788         unsigned long val;
789         int rc;
790
791         rc = kstrtoul(buffer, 0, &val);
792         if (rc)
793                 return rc;
794
795         if (val <= LL_SA_RPC_MAX)
796                 sbi->ll_sa_max = val;
797         else
798                 CERROR("Bad statahead_max value %lu. Valid values are in the range [0, %d]\n",
799                        val, LL_SA_RPC_MAX);
800
801         return count;
802 }
803 LUSTRE_RW_ATTR(statahead_max);
804
805 static ssize_t statahead_agl_show(struct kobject *kobj,
806                                   struct attribute *attr,
807                                   char *buf)
808 {
809         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
810                                               ll_kset.kobj);
811
812         return sprintf(buf, "%u\n", sbi->ll_flags & LL_SBI_AGL_ENABLED ? 1 : 0);
813 }
814
815 static ssize_t statahead_agl_store(struct kobject *kobj,
816                                    struct attribute *attr,
817                                    const char *buffer,
818                                    size_t count)
819 {
820         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
821                                               ll_kset.kobj);
822         bool val;
823         int rc;
824
825         rc = kstrtobool(buffer, &val);
826         if (rc)
827                 return rc;
828
829         if (val)
830                 sbi->ll_flags |= LL_SBI_AGL_ENABLED;
831         else
832                 sbi->ll_flags &= ~LL_SBI_AGL_ENABLED;
833
834         return count;
835 }
836 LUSTRE_RW_ATTR(statahead_agl);
837
838 static int ll_statahead_stats_seq_show(struct seq_file *m, void *v)
839 {
840         struct super_block *sb = m->private;
841         struct ll_sb_info *sbi = ll_s2sbi(sb);
842
843         seq_printf(m, "statahead total: %u\n"
844                       "statahead wrong: %u\n"
845                       "agl total: %u\n",
846                    atomic_read(&sbi->ll_sa_total),
847                    atomic_read(&sbi->ll_sa_wrong),
848                    atomic_read(&sbi->ll_agl_total));
849         return 0;
850 }
851
852 LDEBUGFS_SEQ_FOPS_RO(ll_statahead_stats);
853
854 static ssize_t lazystatfs_show(struct kobject *kobj,
855                                struct attribute *attr,
856                                char *buf)
857 {
858         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
859                                               ll_kset.kobj);
860
861         return sprintf(buf, "%u\n", (sbi->ll_flags & LL_SBI_LAZYSTATFS) ? 1 : 0);
862 }
863
864 static ssize_t lazystatfs_store(struct kobject *kobj,
865                                 struct attribute *attr,
866                                 const char *buffer,
867                                 size_t count)
868 {
869         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
870                                               ll_kset.kobj);
871         bool val;
872         int rc;
873
874         rc = kstrtobool(buffer, &val);
875         if (rc)
876                 return rc;
877
878         if (val)
879                 sbi->ll_flags |= LL_SBI_LAZYSTATFS;
880         else
881                 sbi->ll_flags &= ~LL_SBI_LAZYSTATFS;
882
883         return count;
884 }
885 LUSTRE_RW_ATTR(lazystatfs);
886
887 static ssize_t max_easize_show(struct kobject *kobj,
888                                struct attribute *attr,
889                                char *buf)
890 {
891         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
892                                               ll_kset.kobj);
893         unsigned int ealen;
894         int rc;
895
896         rc = ll_get_max_mdsize(sbi, &ealen);
897         if (rc)
898                 return rc;
899
900         return sprintf(buf, "%u\n", ealen);
901 }
902 LUSTRE_RO_ATTR(max_easize);
903
904 /**
905  * Get default_easize.
906  *
907  * \see client_obd::cl_default_mds_easize
908  *
909  * \param[in] m         seq_file handle
910  * \param[in] v         unused for single entry
911  *
912  * \retval 0            on success
913  * \retval negative     negated errno on failure
914  */
915 static ssize_t default_easize_show(struct kobject *kobj,
916                                    struct attribute *attr,
917                                    char *buf)
918 {
919         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
920                                               ll_kset.kobj);
921         unsigned int ealen;
922         int rc;
923
924         rc = ll_get_default_mdsize(sbi, &ealen);
925         if (rc)
926                 return rc;
927
928         return sprintf(buf, "%u\n", ealen);
929 }
930
931 /**
932  * Set default_easize.
933  *
934  * Range checking on the passed value is handled by
935  * ll_set_default_mdsize().
936  *
937  * \see client_obd::cl_default_mds_easize
938  *
939  * \param[in] file      proc file
940  * \param[in] buffer    string passed from user space
941  * \param[in] count     \a buffer length
942  * \param[in] off       unused for single entry
943  *
944  * \retval positive     \a count on success
945  * \retval negative     negated errno on failure
946  */
947 static ssize_t default_easize_store(struct kobject *kobj,
948                                     struct attribute *attr,
949                                     const char *buffer,
950                                     size_t count)
951 {
952         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
953                                               ll_kset.kobj);
954         unsigned int val;
955         int rc;
956
957         if (count == 0)
958                 return 0;
959
960         rc = kstrtouint(buffer, 10, &val);
961         if (rc)
962                 return rc;
963
964         rc = ll_set_default_mdsize(sbi, val);
965         if (rc)
966                 return rc;
967
968         return count;
969 }
970 LUSTRE_RW_ATTR(default_easize);
971
972 static int ll_sbi_flags_seq_show(struct seq_file *m, void *v)
973 {
974         const char *str[] = LL_SBI_FLAGS;
975         struct super_block *sb = m->private;
976         int flags = ll_s2sbi(sb)->ll_flags;
977         int i = 0;
978
979         while (flags != 0) {
980                 if (ARRAY_SIZE(str) <= i) {
981                         CERROR("%s: Revise array LL_SBI_FLAGS to match sbi "
982                                 "flags please.\n", ll_s2sbi(sb)->ll_fsname);
983                         return -EINVAL;
984                 }
985
986                 if (flags & 0x1)
987                         seq_printf(m, "%s ", str[i]);
988                 flags >>= 1;
989                 ++i;
990         }
991         seq_printf(m, "\b\n");
992         return 0;
993 }
994
995 LDEBUGFS_SEQ_FOPS_RO(ll_sbi_flags);
996
997 static ssize_t xattr_cache_show(struct kobject *kobj,
998                                 struct attribute *attr,
999                                 char *buf)
1000 {
1001         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1002                                               ll_kset.kobj);
1003
1004         return sprintf(buf, "%u\n", sbi->ll_xattr_cache_enabled);
1005 }
1006
1007 static ssize_t xattr_cache_store(struct kobject *kobj,
1008                                  struct attribute *attr,
1009                                  const char *buffer,
1010                                  size_t count)
1011 {
1012         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1013                                               ll_kset.kobj);
1014         bool val;
1015         int rc;
1016
1017         rc = kstrtobool(buffer, &val);
1018         if (rc)
1019                 return rc;
1020
1021         if (val && !(sbi->ll_flags & LL_SBI_XATTR_CACHE))
1022                 return -ENOTSUPP;
1023
1024         sbi->ll_xattr_cache_enabled = val;
1025         sbi->ll_xattr_cache_set = 1;
1026
1027         return count;
1028 }
1029 LUSTRE_RW_ATTR(xattr_cache);
1030
1031 static ssize_t tiny_write_show(struct kobject *kobj,
1032                                struct attribute *attr,
1033                                char *buf)
1034 {
1035         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1036                                               ll_kset.kobj);
1037
1038         return sprintf(buf, "%u\n", !!(sbi->ll_flags & LL_SBI_TINY_WRITE));
1039 }
1040
1041 static ssize_t tiny_write_store(struct kobject *kobj,
1042                                 struct attribute *attr,
1043                                 const char *buffer,
1044                                 size_t count)
1045 {
1046         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1047                                               ll_kset.kobj);
1048         bool val;
1049         int rc;
1050
1051         rc = kstrtobool(buffer, &val);
1052         if (rc)
1053                 return rc;
1054
1055         spin_lock(&sbi->ll_lock);
1056         if (val)
1057                 sbi->ll_flags |= LL_SBI_TINY_WRITE;
1058         else
1059                 sbi->ll_flags &= ~LL_SBI_TINY_WRITE;
1060         spin_unlock(&sbi->ll_lock);
1061
1062         return count;
1063 }
1064 LUSTRE_RW_ATTR(tiny_write);
1065
1066 static ssize_t fast_read_show(struct kobject *kobj,
1067                               struct attribute *attr,
1068                               char *buf)
1069 {
1070         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1071                                               ll_kset.kobj);
1072
1073         return sprintf(buf, "%u\n", !!(sbi->ll_flags & LL_SBI_FAST_READ));
1074 }
1075
1076 static ssize_t fast_read_store(struct kobject *kobj,
1077                                struct attribute *attr,
1078                                const char *buffer,
1079                                size_t count)
1080 {
1081         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1082                                               ll_kset.kobj);
1083         bool val;
1084         int rc;
1085
1086         rc = kstrtobool(buffer, &val);
1087         if (rc)
1088                 return rc;
1089
1090         spin_lock(&sbi->ll_lock);
1091         if (val)
1092                 sbi->ll_flags |= LL_SBI_FAST_READ;
1093         else
1094                 sbi->ll_flags &= ~LL_SBI_FAST_READ;
1095         spin_unlock(&sbi->ll_lock);
1096
1097         return count;
1098 }
1099 LUSTRE_RW_ATTR(fast_read);
1100
1101 static ssize_t file_heat_show(struct kobject *kobj,
1102                               struct attribute *attr,
1103                               char *buf)
1104 {
1105         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1106                                               ll_kset.kobj);
1107
1108         return snprintf(buf, PAGE_SIZE, "%u\n",
1109                         !!(sbi->ll_flags & LL_SBI_FILE_HEAT));
1110 }
1111
1112 static ssize_t file_heat_store(struct kobject *kobj,
1113                                struct attribute *attr,
1114                                const char *buffer,
1115                                size_t count)
1116 {
1117         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1118                                               ll_kset.kobj);
1119         bool val;
1120         int rc;
1121
1122         rc = kstrtobool(buffer, &val);
1123         if (rc)
1124                 return rc;
1125
1126         spin_lock(&sbi->ll_lock);
1127         if (val)
1128                 sbi->ll_flags |= LL_SBI_FILE_HEAT;
1129         else
1130                 sbi->ll_flags &= ~LL_SBI_FILE_HEAT;
1131         spin_unlock(&sbi->ll_lock);
1132
1133         return count;
1134 }
1135 LUSTRE_RW_ATTR(file_heat);
1136
1137 static ssize_t heat_decay_percentage_show(struct kobject *kobj,
1138                                           struct attribute *attr,
1139                                           char *buf)
1140 {
1141         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1142                                               ll_kset.kobj);
1143
1144         return snprintf(buf, PAGE_SIZE, "%u\n",
1145                        (sbi->ll_heat_decay_weight * 100 + 128) / 256);
1146 }
1147
1148 static ssize_t heat_decay_percentage_store(struct kobject *kobj,
1149                                            struct attribute *attr,
1150                                            const char *buffer,
1151                                            size_t count)
1152 {
1153         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1154                                               ll_kset.kobj);
1155         unsigned long val;
1156         int rc;
1157
1158         rc = kstrtoul(buffer, 10, &val);
1159         if (rc)
1160                 return rc;
1161
1162         if (val < 0 || val > 100)
1163                 return -ERANGE;
1164
1165         sbi->ll_heat_decay_weight = (val * 256 + 50) / 100;
1166
1167         return count;
1168 }
1169 LUSTRE_RW_ATTR(heat_decay_percentage);
1170
1171 static ssize_t heat_period_second_show(struct kobject *kobj,
1172                                        struct attribute *attr,
1173                                        char *buf)
1174 {
1175         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1176                                               ll_kset.kobj);
1177
1178         return snprintf(buf, PAGE_SIZE, "%u\n", sbi->ll_heat_period_second);
1179 }
1180
1181 static ssize_t heat_period_second_store(struct kobject *kobj,
1182                                         struct attribute *attr,
1183                                         const char *buffer,
1184                                         size_t count)
1185 {
1186         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1187                                               ll_kset.kobj);
1188         unsigned long val;
1189         int rc;
1190
1191         rc = kstrtoul(buffer, 10, &val);
1192         if (rc)
1193                 return rc;
1194
1195         if (val <= 0)
1196                 return -ERANGE;
1197
1198         sbi->ll_heat_period_second = val;
1199
1200         return count;
1201 }
1202 LUSTRE_RW_ATTR(heat_period_second);
1203
1204 static int ll_unstable_stats_seq_show(struct seq_file *m, void *v)
1205 {
1206         struct super_block      *sb    = m->private;
1207         struct ll_sb_info       *sbi   = ll_s2sbi(sb);
1208         struct cl_client_cache  *cache = sbi->ll_cache;
1209         long pages;
1210         int mb;
1211
1212         pages = atomic_long_read(&cache->ccc_unstable_nr);
1213         mb    = (pages * PAGE_SIZE) >> 20;
1214
1215         seq_printf(m, "unstable_check:     %8d\n"
1216                       "unstable_pages: %12ld\n"
1217                       "unstable_mb:        %8d\n",
1218                    cache->ccc_unstable_check, pages, mb);
1219         return 0;
1220 }
1221
1222 static ssize_t ll_unstable_stats_seq_write(struct file *file,
1223                                            const char __user *buffer,
1224                                            size_t count, loff_t *unused)
1225 {
1226         struct seq_file *seq = file->private_data;
1227         struct ll_sb_info *sbi = ll_s2sbi((struct super_block *)seq->private);
1228         char kernbuf[128];
1229         bool val;
1230         int rc;
1231
1232         if (count == 0)
1233                 return 0;
1234         if (count >= sizeof(kernbuf))
1235                 return -EINVAL;
1236
1237         if (copy_from_user(kernbuf, buffer, count))
1238                 return -EFAULT;
1239         kernbuf[count] = 0;
1240
1241         buffer += lprocfs_find_named_value(kernbuf, "unstable_check:", &count) -
1242                   kernbuf;
1243         rc = kstrtobool_from_user(buffer, count, &val);
1244         if (rc < 0)
1245                 return rc;
1246
1247         /* borrow lru lock to set the value */
1248         spin_lock(&sbi->ll_cache->ccc_lru_lock);
1249         sbi->ll_cache->ccc_unstable_check = val;
1250         spin_unlock(&sbi->ll_cache->ccc_lru_lock);
1251
1252         return count;
1253 }
1254
1255 LDEBUGFS_SEQ_FOPS(ll_unstable_stats);
1256
1257 static int ll_root_squash_seq_show(struct seq_file *m, void *v)
1258 {
1259         struct super_block *sb = m->private;
1260         struct ll_sb_info *sbi = ll_s2sbi(sb);
1261         struct root_squash_info *squash = &sbi->ll_squash;
1262
1263         seq_printf(m, "%u:%u\n", squash->rsi_uid, squash->rsi_gid);
1264         return 0;
1265 }
1266
1267 static ssize_t ll_root_squash_seq_write(struct file *file,
1268                                         const char __user *buffer,
1269                                         size_t count, loff_t *off)
1270 {
1271         struct seq_file *m = file->private_data;
1272         struct super_block *sb = m->private;
1273         struct ll_sb_info *sbi = ll_s2sbi(sb);
1274         struct root_squash_info *squash = &sbi->ll_squash;
1275
1276         return lprocfs_wr_root_squash(buffer, count, squash, sbi->ll_fsname);
1277 }
1278
1279 LDEBUGFS_SEQ_FOPS(ll_root_squash);
1280
1281 static int ll_nosquash_nids_seq_show(struct seq_file *m, void *v)
1282 {
1283         struct super_block *sb = m->private;
1284         struct ll_sb_info *sbi = ll_s2sbi(sb);
1285         struct root_squash_info *squash = &sbi->ll_squash;
1286         int len;
1287
1288         down_read(&squash->rsi_sem);
1289         if (!list_empty(&squash->rsi_nosquash_nids)) {
1290                 len = cfs_print_nidlist(m->buf + m->count, m->size - m->count,
1291                                         &squash->rsi_nosquash_nids);
1292                 m->count += len;
1293                 seq_putc(m, '\n');
1294         } else {
1295                 seq_puts(m, "NONE\n");
1296         }
1297         up_read(&squash->rsi_sem);
1298
1299         return 0;
1300 }
1301
1302 static ssize_t ll_nosquash_nids_seq_write(struct file *file,
1303                                           const char __user *buffer,
1304                                           size_t count, loff_t *off)
1305 {
1306         struct seq_file *m = file->private_data;
1307         struct super_block *sb = m->private;
1308         struct ll_sb_info *sbi = ll_s2sbi(sb);
1309         struct root_squash_info *squash = &sbi->ll_squash;
1310         int rc;
1311
1312         rc = lprocfs_wr_nosquash_nids(buffer, count, squash, sbi->ll_fsname);
1313         if (rc < 0)
1314                 return rc;
1315
1316         ll_compute_rootsquash_state(sbi);
1317
1318         return rc;
1319 }
1320
1321 LDEBUGFS_SEQ_FOPS(ll_nosquash_nids);
1322
1323 struct lprocfs_vars lprocfs_llite_obd_vars[] = {
1324         { .name =       "site",
1325           .fops =       &ll_site_stats_fops                     },
1326         { .name =       "max_read_ahead_mb",
1327           .fops =       &ll_max_readahead_mb_fops               },
1328         { .name =       "max_read_ahead_per_file_mb",
1329           .fops =       &ll_max_readahead_per_file_mb_fops      },
1330         { .name =       "max_read_ahead_whole_mb",
1331           .fops =       &ll_max_read_ahead_whole_mb_fops        },
1332         { .name =       "max_cached_mb",
1333           .fops =       &ll_max_cached_mb_fops                  },
1334         { .name =       "statahead_stats",
1335           .fops =       &ll_statahead_stats_fops                },
1336         { .name =       "unstable_stats",
1337           .fops =       &ll_unstable_stats_fops                 },
1338         { .name =       "sbi_flags",
1339           .fops =       &ll_sbi_flags_fops                      },
1340         { .name =       "root_squash",
1341           .fops =       &ll_root_squash_fops                    },
1342         { .name =       "nosquash_nids",
1343           .fops =       &ll_nosquash_nids_fops                  },
1344         { NULL }
1345 };
1346
1347 #define MAX_STRING_SIZE 128
1348
1349 static struct attribute *llite_attrs[] = {
1350         &lustre_attr_blocksize.attr,
1351         &lustre_attr_stat_blocksize.attr,
1352         &lustre_attr_kbytestotal.attr,
1353         &lustre_attr_kbytesfree.attr,
1354         &lustre_attr_kbytesavail.attr,
1355         &lustre_attr_filestotal.attr,
1356         &lustre_attr_filesfree.attr,
1357         &lustre_attr_client_type.attr,
1358         &lustre_attr_fstype.attr,
1359         &lustre_attr_uuid.attr,
1360         &lustre_attr_checksums.attr,
1361         &lustre_attr_checksum_pages.attr,
1362         &lustre_attr_stats_track_pid.attr,
1363         &lustre_attr_stats_track_ppid.attr,
1364         &lustre_attr_stats_track_gid.attr,
1365         &lustre_attr_statahead_running_max.attr,
1366         &lustre_attr_statahead_max.attr,
1367         &lustre_attr_statahead_agl.attr,
1368         &lustre_attr_lazystatfs.attr,
1369         &lustre_attr_max_easize.attr,
1370         &lustre_attr_default_easize.attr,
1371         &lustre_attr_xattr_cache.attr,
1372         &lustre_attr_fast_read.attr,
1373         &lustre_attr_tiny_write.attr,
1374         &lustre_attr_file_heat.attr,
1375         &lustre_attr_heat_decay_percentage.attr,
1376         &lustre_attr_heat_period_second.attr,
1377         NULL,
1378 };
1379
1380 static void sbi_kobj_release(struct kobject *kobj)
1381 {
1382         struct ll_sb_info *sbi = container_of(kobj, struct ll_sb_info,
1383                                               ll_kset.kobj);
1384         complete(&sbi->ll_kobj_unregister);
1385 }
1386
1387 static struct kobj_type sbi_ktype = {
1388         .default_attrs  = llite_attrs,
1389         .sysfs_ops      = &lustre_sysfs_ops,
1390         .release        = sbi_kobj_release,
1391 };
1392
1393 static const struct llite_file_opcode {
1394         __u32       opcode;
1395         __u32       type;
1396         const char *opname;
1397 } llite_opcode_table[LPROC_LL_FILE_OPCODES] = {
1398         /* file operation */
1399         { LPROC_LL_DIRTY_HITS,     LPROCFS_TYPE_REGS, "dirty_pages_hits" },
1400         { LPROC_LL_DIRTY_MISSES,   LPROCFS_TYPE_REGS, "dirty_pages_misses" },
1401         { LPROC_LL_READ_BYTES,     LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
1402                                    "read_bytes" },
1403         { LPROC_LL_WRITE_BYTES,    LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_BYTES,
1404                                    "write_bytes" },
1405         { LPROC_LL_BRW_READ,       LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_PAGES,
1406                                    "brw_read" },
1407         { LPROC_LL_BRW_WRITE,      LPROCFS_CNTR_AVGMINMAX|LPROCFS_TYPE_PAGES,
1408                                    "brw_write" },
1409         { LPROC_LL_IOCTL,          LPROCFS_TYPE_REGS, "ioctl" },
1410         { LPROC_LL_OPEN,           LPROCFS_TYPE_REGS, "open" },
1411         { LPROC_LL_RELEASE,        LPROCFS_TYPE_REGS, "close" },
1412         { LPROC_LL_MAP,            LPROCFS_TYPE_REGS, "mmap" },
1413         { LPROC_LL_FAULT,          LPROCFS_TYPE_REGS, "page_fault" },
1414         { LPROC_LL_MKWRITE,        LPROCFS_TYPE_REGS, "page_mkwrite" },
1415         { LPROC_LL_LLSEEK,         LPROCFS_TYPE_REGS, "seek" },
1416         { LPROC_LL_FSYNC,          LPROCFS_TYPE_REGS, "fsync" },
1417         { LPROC_LL_READDIR,        LPROCFS_TYPE_REGS, "readdir" },
1418         /* inode operation */
1419         { LPROC_LL_SETATTR,        LPROCFS_TYPE_REGS, "setattr" },
1420         { LPROC_LL_TRUNC,          LPROCFS_TYPE_REGS, "truncate" },
1421         { LPROC_LL_FLOCK,          LPROCFS_TYPE_REGS, "flock" },
1422         { LPROC_LL_GETATTR,        LPROCFS_TYPE_REGS, "getattr" },
1423         /* dir inode operation */
1424         { LPROC_LL_CREATE,         LPROCFS_TYPE_REGS, "create" },
1425         { LPROC_LL_LINK,           LPROCFS_TYPE_REGS, "link" },
1426         { LPROC_LL_UNLINK,         LPROCFS_TYPE_REGS, "unlink" },
1427         { LPROC_LL_SYMLINK,        LPROCFS_TYPE_REGS, "symlink" },
1428         { LPROC_LL_MKDIR,          LPROCFS_TYPE_REGS, "mkdir" },
1429         { LPROC_LL_RMDIR,          LPROCFS_TYPE_REGS, "rmdir" },
1430         { LPROC_LL_MKNOD,          LPROCFS_TYPE_REGS, "mknod" },
1431         { LPROC_LL_RENAME,         LPROCFS_TYPE_REGS, "rename" },
1432         /* special inode operation */
1433         { LPROC_LL_STAFS,          LPROCFS_TYPE_REGS, "statfs" },
1434         { LPROC_LL_ALLOC_INODE,    LPROCFS_TYPE_REGS, "alloc_inode" },
1435         { LPROC_LL_SETXATTR,       LPROCFS_TYPE_REGS, "setxattr" },
1436         { LPROC_LL_GETXATTR,       LPROCFS_TYPE_REGS, "getxattr" },
1437         { LPROC_LL_GETXATTR_HITS,  LPROCFS_TYPE_REGS, "getxattr_hits" },
1438         { LPROC_LL_LISTXATTR,      LPROCFS_TYPE_REGS, "listxattr" },
1439         { LPROC_LL_REMOVEXATTR,    LPROCFS_TYPE_REGS, "removexattr" },
1440         { LPROC_LL_INODE_PERM,     LPROCFS_TYPE_REGS, "inode_permission" },
1441 };
1442
1443 void ll_stats_ops_tally(struct ll_sb_info *sbi, int op, int count)
1444 {
1445         if (!sbi->ll_stats)
1446                 return;
1447         if (sbi->ll_stats_track_type == STATS_TRACK_ALL)
1448                 lprocfs_counter_add(sbi->ll_stats, op, count);
1449         else if (sbi->ll_stats_track_type == STATS_TRACK_PID &&
1450                  sbi->ll_stats_track_id == current->pid)
1451                 lprocfs_counter_add(sbi->ll_stats, op, count);
1452         else if (sbi->ll_stats_track_type == STATS_TRACK_PPID &&
1453                  sbi->ll_stats_track_id == current->parent->pid)
1454                 lprocfs_counter_add(sbi->ll_stats, op, count);
1455         else if (sbi->ll_stats_track_type == STATS_TRACK_GID &&
1456                  sbi->ll_stats_track_id ==
1457                         from_kgid(&init_user_ns, current_gid()))
1458                 lprocfs_counter_add(sbi->ll_stats, op, count);
1459 }
1460 EXPORT_SYMBOL(ll_stats_ops_tally);
1461
1462 static const char *ra_stat_string[] = {
1463         [RA_STAT_HIT] = "hits",
1464         [RA_STAT_MISS] = "misses",
1465         [RA_STAT_DISTANT_READPAGE] = "readpage not consecutive",
1466         [RA_STAT_MISS_IN_WINDOW] = "miss inside window",
1467         [RA_STAT_FAILED_GRAB_PAGE] = "failed grab_cache_page",
1468         [RA_STAT_FAILED_MATCH] = "failed lock match",
1469         [RA_STAT_DISCARDED] = "read but discarded",
1470         [RA_STAT_ZERO_LEN] = "zero length file",
1471         [RA_STAT_ZERO_WINDOW] = "zero size window",
1472         [RA_STAT_EOF] = "read-ahead to EOF",
1473         [RA_STAT_MAX_IN_FLIGHT] = "hit max r-a issue",
1474         [RA_STAT_WRONG_GRAB_PAGE] = "wrong page from grab_cache_page",
1475         [RA_STAT_FAILED_REACH_END] = "failed to reach end"
1476 };
1477
1478 int ll_debugfs_register_super(struct super_block *sb, const char *name)
1479 {
1480         struct lustre_sb_info *lsi = s2lsi(sb);
1481         struct ll_sb_info *sbi = ll_s2sbi(sb);
1482         int err, id, rc;
1483
1484         ENTRY;
1485         LASSERT(sbi);
1486
1487         if (IS_ERR_OR_NULL(llite_root))
1488                 goto out_ll_kset;
1489
1490         sbi->ll_debugfs_entry = ldebugfs_register(name, llite_root,
1491                                                   lprocfs_llite_obd_vars, sb);
1492         if (IS_ERR_OR_NULL(sbi->ll_debugfs_entry)) {
1493                 err = sbi->ll_debugfs_entry ? PTR_ERR(sbi->ll_debugfs_entry) :
1494                                               -ENOMEM;
1495                 sbi->ll_debugfs_entry = NULL;
1496                 RETURN(err);
1497         }
1498
1499         rc = ldebugfs_seq_create(sbi->ll_debugfs_entry, "dump_page_cache",0444,
1500                                  &vvp_dump_pgcache_file_ops, sbi);
1501         if (rc)
1502                 CWARN("Error adding the dump_page_cache file\n");
1503
1504         rc = ldebugfs_seq_create(sbi->ll_debugfs_entry, "extents_stats", 0644,
1505                                  &ll_rw_extents_stats_fops, sbi);
1506         if (rc)
1507                 CWARN("Error adding the extent_stats file\n");
1508
1509         rc = ldebugfs_seq_create(sbi->ll_debugfs_entry,
1510                                  "extents_stats_per_process", 0644,
1511                                  &ll_rw_extents_stats_pp_fops, sbi);
1512         if (rc)
1513                 CWARN("Error adding the extents_stats_per_process file\n");
1514
1515         rc = ldebugfs_seq_create(sbi->ll_debugfs_entry, "offset_stats", 0644,
1516                                  &ll_rw_offset_stats_fops, sbi);
1517         if (rc)
1518                 CWARN("Error adding the offset_stats file\n");
1519
1520         /* File operations stats */
1521         sbi->ll_stats = lprocfs_alloc_stats(LPROC_LL_FILE_OPCODES,
1522                                             LPROCFS_STATS_FLAG_NONE);
1523         if (sbi->ll_stats == NULL)
1524                 GOTO(out_debugfs, err = -ENOMEM);
1525
1526         /* do counter init */
1527         for (id = 0; id < LPROC_LL_FILE_OPCODES; id++) {
1528                 u32 type = llite_opcode_table[id].type;
1529                 void *ptr = NULL;
1530
1531                 if (type & LPROCFS_TYPE_REGS)
1532                         ptr = "regs";
1533                 else if (type & LPROCFS_TYPE_BYTES)
1534                         ptr = "bytes";
1535                 else if (type & LPROCFS_TYPE_PAGES)
1536                         ptr = "pages";
1537                 lprocfs_counter_init(sbi->ll_stats,
1538                                      llite_opcode_table[id].opcode,
1539                                      (type & LPROCFS_CNTR_AVGMINMAX),
1540                                      llite_opcode_table[id].opname, ptr);
1541         }
1542
1543         err = ldebugfs_register_stats(sbi->ll_debugfs_entry, "stats",
1544                                       sbi->ll_stats);
1545         if (err)
1546                 GOTO(out_stats, err);
1547
1548         sbi->ll_ra_stats = lprocfs_alloc_stats(ARRAY_SIZE(ra_stat_string),
1549                                                LPROCFS_STATS_FLAG_NONE);
1550         if (sbi->ll_ra_stats == NULL)
1551                 GOTO(out_stats, err = -ENOMEM);
1552
1553         for (id = 0; id < ARRAY_SIZE(ra_stat_string); id++)
1554                 lprocfs_counter_init(sbi->ll_ra_stats, id, 0,
1555                                      ra_stat_string[id], "pages");
1556
1557         err = ldebugfs_register_stats(sbi->ll_debugfs_entry, "read_ahead_stats",
1558                                       sbi->ll_ra_stats);
1559         if (err)
1560                 GOTO(out_ra_stats, err);
1561
1562 out_ll_kset:
1563         /* Yes we also register sysfs mount kset here as well */
1564         sbi->ll_kset.kobj.parent = llite_kobj;
1565         sbi->ll_kset.kobj.ktype = &sbi_ktype;
1566         init_completion(&sbi->ll_kobj_unregister);
1567         err = kobject_set_name(&sbi->ll_kset.kobj, "%s", name);
1568         if (err)
1569                 GOTO(out_ra_stats, err);
1570
1571         err = kset_register(&sbi->ll_kset);
1572         if (err)
1573                 GOTO(out_ra_stats, err);
1574
1575         lsi->lsi_kobj = kobject_get(&sbi->ll_kset.kobj);
1576
1577         RETURN(0);
1578 out_ra_stats:
1579         lprocfs_free_stats(&sbi->ll_ra_stats);
1580 out_stats:
1581         lprocfs_free_stats(&sbi->ll_stats);
1582 out_debugfs:
1583         ldebugfs_remove(&sbi->ll_debugfs_entry);
1584
1585         RETURN(err);
1586 }
1587
1588 void ll_debugfs_unregister_super(struct super_block *sb)
1589 {
1590         struct lustre_sb_info *lsi = s2lsi(sb);
1591         struct ll_sb_info *sbi = ll_s2sbi(sb);
1592
1593         if (!IS_ERR_OR_NULL(sbi->ll_debugfs_entry))
1594                 ldebugfs_remove(&sbi->ll_debugfs_entry);
1595
1596         if (sbi->ll_dt_obd)
1597                 sysfs_remove_link(&sbi->ll_kset.kobj,
1598                                   sbi->ll_dt_obd->obd_type->typ_name);
1599
1600         if (sbi->ll_md_obd)
1601                 sysfs_remove_link(&sbi->ll_kset.kobj,
1602                                   sbi->ll_md_obd->obd_type->typ_name);
1603
1604         kobject_put(lsi->lsi_kobj);
1605
1606         kset_unregister(&sbi->ll_kset);
1607         wait_for_completion(&sbi->ll_kobj_unregister);
1608
1609         lprocfs_free_stats(&sbi->ll_ra_stats);
1610         lprocfs_free_stats(&sbi->ll_stats);
1611 }
1612 #undef MAX_STRING_SIZE
1613
1614 static void ll_display_extents_info(struct ll_rw_extents_info *io_extents,
1615                                    struct seq_file *seq, int which)
1616 {
1617         unsigned long read_tot = 0, write_tot = 0, read_cum, write_cum;
1618         unsigned long start, end, r, w;
1619         char *unitp = "KMGTPEZY";
1620         int i, units = 10;
1621         struct per_process_info *pp_info = &io_extents->pp_extents[which];
1622
1623         read_cum = 0;
1624         write_cum = 0;
1625         start = 0;
1626
1627         for(i = 0; i < LL_HIST_MAX; i++) {
1628                 read_tot += pp_info->pp_r_hist.oh_buckets[i];
1629                 write_tot += pp_info->pp_w_hist.oh_buckets[i];
1630         }
1631
1632         for(i = 0; i < LL_HIST_MAX; i++) {
1633                 r = pp_info->pp_r_hist.oh_buckets[i];
1634                 w = pp_info->pp_w_hist.oh_buckets[i];
1635                 read_cum += r;
1636                 write_cum += w;
1637                 end = BIT(i + LL_HIST_START - units);
1638                 seq_printf(seq, "%4lu%c - %4lu%c%c: %14lu %4u %4u  | "
1639                            "%14lu %4u %4u\n", start, *unitp, end, *unitp,
1640                            (i == LL_HIST_MAX - 1) ? '+' : ' ',
1641                            r, pct(r, read_tot), pct(read_cum, read_tot),
1642                            w, pct(w, write_tot), pct(write_cum, write_tot));
1643                 start = end;
1644                 if (start == BIT(10)) {
1645                         start = 1;
1646                         units += 10;
1647                         unitp++;
1648                 }
1649                 if (read_cum == read_tot && write_cum == write_tot)
1650                         break;
1651         }
1652 }
1653
1654 static int ll_rw_extents_stats_pp_seq_show(struct seq_file *seq, void *v)
1655 {
1656         struct timespec64 now;
1657         struct ll_sb_info *sbi = seq->private;
1658         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1659         int k;
1660
1661         ktime_get_real_ts64(&now);
1662
1663         if (!sbi->ll_rw_stats_on) {
1664                 seq_puts(seq, "disabled\n write anything to this file to activate, then '0' or 'disable' to deactivate\n");
1665                 return 0;
1666         }
1667         seq_printf(seq, "snapshot_time:         %llu.%09lu (secs.nsecs)\n",
1668                    (s64)now.tv_sec, now.tv_nsec);
1669         seq_printf(seq, "%15s %19s       | %20s\n", " ", "read", "write");
1670         seq_printf(seq, "%13s   %14s %4s %4s  | %14s %4s %4s\n",
1671                    "extents", "calls", "%", "cum%",
1672                    "calls", "%", "cum%");
1673         spin_lock(&sbi->ll_pp_extent_lock);
1674         for (k = 0; k < LL_PROCESS_HIST_MAX; k++) {
1675                 if (io_extents->pp_extents[k].pid != 0) {
1676                         seq_printf(seq, "\nPID: %d\n",
1677                                    io_extents->pp_extents[k].pid);
1678                         ll_display_extents_info(io_extents, seq, k);
1679                 }
1680         }
1681         spin_unlock(&sbi->ll_pp_extent_lock);
1682         return 0;
1683 }
1684
1685 static ssize_t ll_rw_extents_stats_pp_seq_write(struct file *file,
1686                                                 const char __user *buf,
1687                                                 size_t len,
1688                                                 loff_t *off)
1689 {
1690         struct seq_file *seq = file->private_data;
1691         struct ll_sb_info *sbi = seq->private;
1692         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1693         int i;
1694         __s64 value;
1695
1696         if (len == 0)
1697                 return -EINVAL;
1698
1699         value = ll_stats_pid_write(buf, len);
1700
1701         if (value == 0)
1702                 sbi->ll_rw_stats_on = 0;
1703         else
1704                 sbi->ll_rw_stats_on = 1;
1705
1706         spin_lock(&sbi->ll_pp_extent_lock);
1707         for (i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1708                 io_extents->pp_extents[i].pid = 0;
1709                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_r_hist);
1710                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_w_hist);
1711         }
1712         spin_unlock(&sbi->ll_pp_extent_lock);
1713         return len;
1714 }
1715
1716 LDEBUGFS_SEQ_FOPS(ll_rw_extents_stats_pp);
1717
1718 static int ll_rw_extents_stats_seq_show(struct seq_file *seq, void *v)
1719 {
1720         struct timespec64 now;
1721         struct ll_sb_info *sbi = seq->private;
1722         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1723
1724         ktime_get_real_ts64(&now);
1725
1726         if (!sbi->ll_rw_stats_on) {
1727                 seq_puts(seq, "disabled\n write anything to this file to activate, then '0' or 'disable' to deactivate\n");
1728                 return 0;
1729         }
1730         seq_printf(seq, "snapshot_time:         %llu.%09lu (secs.nsecs)\n",
1731                    (s64)now.tv_sec, now.tv_nsec);
1732
1733         seq_printf(seq, "%15s %19s       | %20s\n", " ", "read", "write");
1734         seq_printf(seq, "%13s   %14s %4s %4s  | %14s %4s %4s\n",
1735                    "extents", "calls", "%", "cum%",
1736                    "calls", "%", "cum%");
1737         spin_lock(&sbi->ll_lock);
1738         ll_display_extents_info(io_extents, seq, LL_PROCESS_HIST_MAX);
1739         spin_unlock(&sbi->ll_lock);
1740
1741         return 0;
1742 }
1743
1744 static ssize_t ll_rw_extents_stats_seq_write(struct file *file,
1745                                              const char __user *buf,
1746                                              size_t len, loff_t *off)
1747 {
1748         struct seq_file *seq = file->private_data;
1749         struct ll_sb_info *sbi = seq->private;
1750         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1751         int i;
1752         __s64 value;
1753
1754         if (len == 0)
1755                 return -EINVAL;
1756
1757         value = ll_stats_pid_write(buf, len);
1758
1759         if (value == 0)
1760                 sbi->ll_rw_stats_on = 0;
1761         else
1762                 sbi->ll_rw_stats_on = 1;
1763
1764         spin_lock(&sbi->ll_pp_extent_lock);
1765         for (i = 0; i <= LL_PROCESS_HIST_MAX; i++) {
1766                 io_extents->pp_extents[i].pid = 0;
1767                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_r_hist);
1768                 lprocfs_oh_clear(&io_extents->pp_extents[i].pp_w_hist);
1769         }
1770         spin_unlock(&sbi->ll_pp_extent_lock);
1771
1772         return len;
1773 }
1774
1775 LDEBUGFS_SEQ_FOPS(ll_rw_extents_stats);
1776
1777 void ll_rw_stats_tally(struct ll_sb_info *sbi, pid_t pid,
1778                        struct ll_file_data *file, loff_t pos,
1779                        size_t count, int rw)
1780 {
1781         int i, cur = -1;
1782         struct ll_rw_process_info *process;
1783         struct ll_rw_process_info *offset;
1784         int *off_count = &sbi->ll_rw_offset_entry_count;
1785         int *process_count = &sbi->ll_offset_process_count;
1786         struct ll_rw_extents_info *io_extents = &sbi->ll_rw_extents_info;
1787
1788         if(!sbi->ll_rw_stats_on)
1789                 return;
1790         process = sbi->ll_rw_process_info;
1791         offset = sbi->ll_rw_offset_info;
1792
1793         spin_lock(&sbi->ll_pp_extent_lock);
1794         /* Extent statistics */
1795         for(i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1796                 if(io_extents->pp_extents[i].pid == pid) {
1797                         cur = i;
1798                         break;
1799                 }
1800         }
1801
1802         if (cur == -1) {
1803                 /* new process */
1804                 sbi->ll_extent_process_count =
1805                         (sbi->ll_extent_process_count + 1) % LL_PROCESS_HIST_MAX;
1806                 cur = sbi->ll_extent_process_count;
1807                 io_extents->pp_extents[cur].pid = pid;
1808                 lprocfs_oh_clear(&io_extents->pp_extents[cur].pp_r_hist);
1809                 lprocfs_oh_clear(&io_extents->pp_extents[cur].pp_w_hist);
1810         }
1811
1812         for(i = 0; (count >= BIT(LL_HIST_START << i)) &&
1813              (i < (LL_HIST_MAX - 1)); i++);
1814         if (rw == 0) {
1815                 io_extents->pp_extents[cur].pp_r_hist.oh_buckets[i]++;
1816                 io_extents->pp_extents[LL_PROCESS_HIST_MAX].pp_r_hist.oh_buckets[i]++;
1817         } else {
1818                 io_extents->pp_extents[cur].pp_w_hist.oh_buckets[i]++;
1819                 io_extents->pp_extents[LL_PROCESS_HIST_MAX].pp_w_hist.oh_buckets[i]++;
1820         }
1821         spin_unlock(&sbi->ll_pp_extent_lock);
1822
1823         spin_lock(&sbi->ll_process_lock);
1824         /* Offset statistics */
1825         for (i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1826                 if (process[i].rw_pid == pid) {
1827                         if (process[i].rw_last_file != file) {
1828                                 process[i].rw_range_start = pos;
1829                                 process[i].rw_last_file_pos = pos + count;
1830                                 process[i].rw_smallest_extent = count;
1831                                 process[i].rw_largest_extent = count;
1832                                 process[i].rw_offset = 0;
1833                                 process[i].rw_last_file = file;
1834                                 spin_unlock(&sbi->ll_process_lock);
1835                                 return;
1836                         }
1837                         if (process[i].rw_last_file_pos != pos) {
1838                                 *off_count =
1839                                     (*off_count + 1) % LL_OFFSET_HIST_MAX;
1840                                 offset[*off_count].rw_op = process[i].rw_op;
1841                                 offset[*off_count].rw_pid = pid;
1842                                 offset[*off_count].rw_range_start =
1843                                         process[i].rw_range_start;
1844                                 offset[*off_count].rw_range_end =
1845                                         process[i].rw_last_file_pos;
1846                                 offset[*off_count].rw_smallest_extent =
1847                                         process[i].rw_smallest_extent;
1848                                 offset[*off_count].rw_largest_extent =
1849                                         process[i].rw_largest_extent;
1850                                 offset[*off_count].rw_offset =
1851                                         process[i].rw_offset;
1852                                 process[i].rw_op = rw;
1853                                 process[i].rw_range_start = pos;
1854                                 process[i].rw_smallest_extent = count;
1855                                 process[i].rw_largest_extent = count;
1856                                 process[i].rw_offset = pos -
1857                                         process[i].rw_last_file_pos;
1858                         }
1859                         if(process[i].rw_smallest_extent > count)
1860                                 process[i].rw_smallest_extent = count;
1861                         if(process[i].rw_largest_extent < count)
1862                                 process[i].rw_largest_extent = count;
1863                         process[i].rw_last_file_pos = pos + count;
1864                         spin_unlock(&sbi->ll_process_lock);
1865                         return;
1866                 }
1867         }
1868         *process_count = (*process_count + 1) % LL_PROCESS_HIST_MAX;
1869         process[*process_count].rw_pid = pid;
1870         process[*process_count].rw_op = rw;
1871         process[*process_count].rw_range_start = pos;
1872         process[*process_count].rw_last_file_pos = pos + count;
1873         process[*process_count].rw_smallest_extent = count;
1874         process[*process_count].rw_largest_extent = count;
1875         process[*process_count].rw_offset = 0;
1876         process[*process_count].rw_last_file = file;
1877         spin_unlock(&sbi->ll_process_lock);
1878 }
1879
1880 static int ll_rw_offset_stats_seq_show(struct seq_file *seq, void *v)
1881 {
1882         struct timespec64 now;
1883         struct ll_sb_info *sbi = seq->private;
1884         struct ll_rw_process_info *offset = sbi->ll_rw_offset_info;
1885         struct ll_rw_process_info *process = sbi->ll_rw_process_info;
1886         int i;
1887
1888         ktime_get_real_ts64(&now);
1889
1890         if (!sbi->ll_rw_stats_on) {
1891                 seq_puts(seq, "disabled\n write anything to this file to activate, then '0' or 'disable' to deactivate\n");
1892                 return 0;
1893         }
1894         spin_lock(&sbi->ll_process_lock);
1895
1896         seq_printf(seq, "snapshot_time:         %llu.%09lu (secs.nsecs)\n",
1897                    (s64)now.tv_sec, now.tv_nsec);
1898         seq_printf(seq, "%3s %10s %14s %14s %17s %17s %14s\n",
1899                    "R/W", "PID", "RANGE START", "RANGE END",
1900                    "SMALLEST EXTENT", "LARGEST EXTENT", "OFFSET");
1901
1902         /* We stored the discontiguous offsets here; print them first */
1903         for (i = 0; i < LL_OFFSET_HIST_MAX; i++) {
1904                 if (offset[i].rw_pid != 0)
1905                         seq_printf(seq,
1906                                   "%3c %10d %14llu %14llu %17lu %17lu %14llu\n",
1907                                    offset[i].rw_op == READ ? 'R' : 'W',
1908                                    offset[i].rw_pid,
1909                                    offset[i].rw_range_start,
1910                                    offset[i].rw_range_end,
1911                                    (unsigned long)offset[i].rw_smallest_extent,
1912                                    (unsigned long)offset[i].rw_largest_extent,
1913                                    offset[i].rw_offset);
1914         }
1915
1916         /* Then print the current offsets for each process */
1917         for (i = 0; i < LL_PROCESS_HIST_MAX; i++) {
1918                 if (process[i].rw_pid != 0)
1919                         seq_printf(seq,
1920                                   "%3c %10d %14llu %14llu %17lu %17lu %14llu\n",
1921                                    process[i].rw_op == READ ? 'R' : 'W',
1922                                    process[i].rw_pid,
1923                                    process[i].rw_range_start,
1924                                    process[i].rw_last_file_pos,
1925                                    (unsigned long)process[i].rw_smallest_extent,
1926                                    (unsigned long)process[i].rw_largest_extent,
1927                                    process[i].rw_offset);
1928         }
1929         spin_unlock(&sbi->ll_process_lock);
1930
1931         return 0;
1932 }
1933
1934 static ssize_t ll_rw_offset_stats_seq_write(struct file *file,
1935                                             const char __user *buf,
1936                                             size_t len, loff_t *off)
1937 {
1938         struct seq_file *seq = file->private_data;
1939         struct ll_sb_info *sbi = seq->private;
1940         struct ll_rw_process_info *process_info = sbi->ll_rw_process_info;
1941         struct ll_rw_process_info *offset_info = sbi->ll_rw_offset_info;
1942         __s64 value;
1943
1944         if (len == 0)
1945                 return -EINVAL;
1946
1947         value = ll_stats_pid_write(buf, len);
1948
1949         if (value == 0)
1950                 sbi->ll_rw_stats_on = 0;
1951         else
1952                 sbi->ll_rw_stats_on = 1;
1953
1954         spin_lock(&sbi->ll_process_lock);
1955         sbi->ll_offset_process_count = 0;
1956         sbi->ll_rw_offset_entry_count = 0;
1957         memset(process_info, 0, sizeof(struct ll_rw_process_info) *
1958                LL_PROCESS_HIST_MAX);
1959         memset(offset_info, 0, sizeof(struct ll_rw_process_info) *
1960                LL_OFFSET_HIST_MAX);
1961         spin_unlock(&sbi->ll_process_lock);
1962
1963         return len;
1964 }
1965
1966 LDEBUGFS_SEQ_FOPS(ll_rw_offset_stats);