blob: 44b62b3c322e9a7b28c58f303cf591eab8f9ec16 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Copyright (C) International Business Machines Corp., 2000-2004
4 * Portions Copyright (C) Christoph Hellwig, 2001-2002
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7#include <linux/fs.h>
8#include <linux/ctype.h>
9#include <linux/module.h>
10#include <linux/proc_fs.h>
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -050011#include <linux/seq_file.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080012#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "jfs_incore.h"
14#include "jfs_filsys.h"
15#include "jfs_debug.h"
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#ifdef PROC_FS_JFS /* see jfs_debug.h */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#ifdef CONFIG_JFS_DEBUG
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -050020static int jfs_loglevel_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -050022 seq_printf(m, "%d\n", jfsloglevel);
23 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024}
25
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -050026static int jfs_loglevel_proc_open(struct inode *inode, struct file *file)
27{
28 return single_open(file, jfs_loglevel_proc_show, NULL);
29}
30
31static ssize_t jfs_loglevel_proc_write(struct file *file,
32 const char __user *buffer, size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
34 char c;
35
36 if (get_user(c, buffer))
37 return -EFAULT;
38
39 /* yes, I know this is an ASCIIism. --hch */
40 if (c < '0' || c > '9')
41 return -EINVAL;
42 jfsloglevel = c - '0';
43 return count;
44}
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -050045
Alexey Dobriyan97a32532020-02-03 17:37:17 -080046static const struct proc_ops jfs_loglevel_proc_ops = {
47 .proc_open = jfs_loglevel_proc_open,
48 .proc_read = seq_read,
49 .proc_lseek = seq_lseek,
50 .proc_release = single_release,
51 .proc_write = jfs_loglevel_proc_write,
Alexey Dobriyanb2e03ca2008-05-13 08:22:10 -050052};
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#endif
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055void jfs_proc_init(void)
56{
Christoph Hellwig07a3b8e2018-04-11 16:51:18 +020057 struct proc_dir_entry *base;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Christoph Hellwig07a3b8e2018-04-11 16:51:18 +020059 base = proc_mkdir("fs/jfs", NULL);
60 if (!base)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Christoph Hellwig07a3b8e2018-04-11 16:51:18 +020063#ifdef CONFIG_JFS_STATISTICS
64 proc_create_single("lmstats", 0, base, jfs_lmstats_proc_show);
65 proc_create_single("txstats", 0, base, jfs_txstats_proc_show);
66 proc_create_single("xtstat", 0, base, jfs_xtstat_proc_show);
67 proc_create_single("mpstat", 0, base, jfs_mpstat_proc_show);
68#endif
69#ifdef CONFIG_JFS_DEBUG
70 proc_create_single("TxAnchor", 0, base, jfs_txanchor_proc_show);
Alexey Dobriyan97a32532020-02-03 17:37:17 -080071 proc_create("loglevel", 0, base, &jfs_loglevel_proc_ops);
Christoph Hellwig07a3b8e2018-04-11 16:51:18 +020072#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75void jfs_proc_clean(void)
76{
Christoph Hellwig07a3b8e2018-04-11 16:51:18 +020077 remove_proc_subtree("fs/jfs", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078}
79
80#endif /* PROC_FS_JFS */