2 * Copyright (C) International Business Machines Corp., 2000-2004
3 * Portions Copyright (C) Christoph Hellwig, 2001-2002
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
13 * the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/ctype.h>
22 #include <linux/module.h>
23 #include <linux/proc_fs.h>
24 #include <asm/uaccess.h>
25 #include "jfs_incore.h"
26 #include "jfs_filsys.h"
27 #include "jfs_debug.h"
29 #ifdef CONFIG_JFS_DEBUG
30 void dump_mem(char *label, void *data, int length)
35 char buf[10], line[80];
37 printk("%s: dump of %d bytes of data at 0x%p\n\n", label, length,
39 for (i = 0; i < length; i += 16) {
41 for (j = 0; (j < 4) && (i + j * 4 < length); j++) {
42 sprintf(buf, " %08x", intptr[i / 4 + j]);
47 for (j = 0; (j < 16) && (i + j < length); j++) {
49 isprint(charptr[i + j]) ? charptr[i + j] : '.';
57 #ifdef PROC_FS_JFS /* see jfs_debug.h */
59 static struct proc_dir_entry *base;
60 #ifdef CONFIG_JFS_DEBUG
61 static int loglevel_read(char *page, char **start, off_t off,
62 int count, int *eof, void *data)
66 len = sprintf(page, "%d\n", jfsloglevel);
82 static int loglevel_write(struct file *file, const char __user *buffer,
83 unsigned long count, void *data)
87 if (get_user(c, buffer))
90 /* yes, I know this is an ASCIIism. --hch */
91 if (c < '0' || c > '9')
93 jfsloglevel = c - '0';
100 read_proc_t *read_fn;
101 write_proc_t *write_fn;
103 #ifdef CONFIG_JFS_STATISTICS
104 { "lmstats", jfs_lmstats_read, },
105 { "txstats", jfs_txstats_read, },
106 { "xtstat", jfs_xtstat_read, },
107 { "mpstat", jfs_mpstat_read, },
109 #ifdef CONFIG_JFS_DEBUG
110 { "TxAnchor", jfs_txanchor_read, },
111 { "loglevel", loglevel_read, loglevel_write }
114 #define NPROCENT ARRAY_SIZE(Entries)
116 void jfs_proc_init(void)
120 if (!(base = proc_mkdir("jfs", proc_root_fs)))
122 base->owner = THIS_MODULE;
124 for (i = 0; i < NPROCENT; i++) {
125 struct proc_dir_entry *p;
126 if ((p = create_proc_entry(Entries[i].name, 0, base))) {
127 p->read_proc = Entries[i].read_fn;
128 p->write_proc = Entries[i].write_fn;
133 void jfs_proc_clean(void)
138 for (i = 0; i < NPROCENT; i++)
139 remove_proc_entry(Entries[i].name, base);
140 remove_proc_entry("jfs", proc_root_fs);
144 #endif /* PROC_FS_JFS */