Merge branches 'for-4.10/upstream-fixes', 'for-4.11/intel-ish', 'for-4.11/mayflash...
[linux-2.6-block.git] / net / irda / irproc.c
CommitLineData
1da177e4 1/*********************************************************************
6819bc2e 2 *
1da177e4
LT
3 * Filename: irproc.c
4 * Version: 1.0
5 * Description: Various entries in the /proc file system
6 * Status: Experimental.
7 * Author: Thomas Davis, <ratbert@radiks.net>
8 * Created at: Sat Feb 21 21:33:24 1998
9 * Modified at: Sun Nov 14 08:54:54 1999
10 * Modified by: Dag Brattli <dagb@cs.uit.no>
11 *
12 * Copyright (c) 1998-1999, Dag Brattli <dagb@cs.uit.no>
6819bc2e 13 * Copyright (c) 1998, Thomas Davis, <ratbert@radiks.net>,
1da177e4 14 * All Rights Reserved.
6819bc2e
YH
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
1da177e4 19 * the License, or (at your option) any later version.
6819bc2e
YH
20 *
21 * I, Thomas Davis, provide no warranty for any of this software.
22 * This material is provided "AS-IS" and at no charge.
23 *
1da177e4
LT
24 ********************************************************************/
25
1da177e4
LT
26#include <linux/proc_fs.h>
27#include <linux/seq_file.h>
28#include <linux/module.h>
29#include <linux/init.h>
457c4cbc 30#include <net/net_namespace.h>
1da177e4
LT
31
32#include <net/irda/irda.h>
33#include <net/irda/irlap.h>
34#include <net/irda/irlmp.h>
35
5ca1b998
SH
36extern const struct file_operations discovery_seq_fops;
37extern const struct file_operations irlap_seq_fops;
38extern const struct file_operations irlmp_seq_fops;
39extern const struct file_operations irttp_seq_fops;
40extern const struct file_operations irias_seq_fops;
1da177e4
LT
41
42struct irda_entry {
43 const char *name;
5ca1b998 44 const struct file_operations *fops;
1da177e4
LT
45};
46
47struct proc_dir_entry *proc_irda;
48EXPORT_SYMBOL(proc_irda);
6819bc2e 49
5ca1b998 50static const struct irda_entry irda_dirs[] = {
1da177e4
LT
51 {"discovery", &discovery_seq_fops},
52 {"irttp", &irttp_seq_fops},
53 {"irlmp", &irlmp_seq_fops},
54 {"irlap", &irlap_seq_fops},
55 {"irias", &irias_seq_fops},
56};
57
58/*
59 * Function irda_proc_register (void)
60 *
61 * Register irda entry in /proc file system
62 *
63 */
6819bc2e 64void __init irda_proc_register(void)
1da177e4
LT
65{
66 int i;
1da177e4 67
457c4cbc 68 proc_irda = proc_mkdir("irda", init_net.proc_net);
1da177e4
LT
69 if (proc_irda == NULL)
70 return;
1da177e4 71
5e47879f 72 for (i = 0; i < ARRAY_SIZE(irda_dirs); i++)
6385969b
DM
73 (void) proc_create(irda_dirs[i].name, 0, proc_irda,
74 irda_dirs[i].fops);
1da177e4
LT
75}
76
77/*
78 * Function irda_proc_unregister (void)
79 *
80 * Unregister irda entry in /proc file system
81 *
82 */
75a69ac6 83void irda_proc_unregister(void)
1da177e4
LT
84{
85 int i;
86
6819bc2e
YH
87 if (proc_irda) {
88 for (i=0; i<ARRAY_SIZE(irda_dirs); i++)
89 remove_proc_entry(irda_dirs[i].name, proc_irda);
1da177e4 90
457c4cbc 91 remove_proc_entry("irda", init_net.proc_net);
6819bc2e
YH
92 proc_irda = NULL;
93 }
1da177e4
LT
94}
95
96