blob: 6262aeae398e8a242eae84f70287b7f07f5768c3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* net/atm/proc.c - ATM /proc interface
2 *
3 * Written 1995-2000 by Werner Almesberger, EPFL LRC/ICA
4 *
5 * seq_file api usage by romieu@fr.zoreil.com
6 *
7 * Evaluating the efficiency of the whole thing if left as an exercise to
8 * the reader.
9 */
10
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h> /* for EXPORT_SYMBOL */
12#include <linux/string.h>
13#include <linux/types.h>
14#include <linux/mm.h>
15#include <linux/fs.h>
16#include <linux/stat.h>
17#include <linux/proc_fs.h>
18#include <linux/seq_file.h>
19#include <linux/errno.h>
20#include <linux/atm.h>
21#include <linux/atmdev.h>
22#include <linux/netdevice.h>
23#include <linux/atmclip.h>
24#include <linux/init.h> /* for __init */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020026#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <net/atmclip.h>
Joe Perches07367ad2010-01-26 11:40:13 +000028#include <linux/uaccess.h>
29#include <linux/param.h> /* for HZ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "resources.h"
32#include "common.h" /* atm_proc_init prototype */
33#include "signaling.h" /* to get sigd - ugly too */
34
Joe Perches07367ad2010-01-26 11:40:13 +000035static ssize_t proc_dev_atm_read(struct file *file, char __user *buf,
36 size_t count, loff_t *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Arjan van de Ven9a321442007-02-12 00:55:35 -080038static const struct file_operations proc_atm_dev_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 .owner = THIS_MODULE,
40 .read = proc_dev_atm_read,
41};
42
43static void add_stats(struct seq_file *seq, const char *aal,
44 const struct k_atm_aal_stats *stats)
45{
46 seq_printf(seq, "%s ( %d %d %d %d %d )", aal,
Joe Perches07367ad2010-01-26 11:40:13 +000047 atomic_read(&stats->tx), atomic_read(&stats->tx_err),
48 atomic_read(&stats->rx), atomic_read(&stats->rx_err),
49 atomic_read(&stats->rx_drop));
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
52static void atm_dev_info(struct seq_file *seq, const struct atm_dev *dev)
53{
54 int i;
55
56 seq_printf(seq, "%3d %-8s", dev->number, dev->type);
57 for (i = 0; i < ESI_LEN; i++)
58 seq_printf(seq, "%02x", dev->esi[i]);
59 seq_puts(seq, " ");
60 add_stats(seq, "0", &dev->stats.aal0);
61 seq_puts(seq, " ");
62 add_stats(seq, "5", &dev->stats.aal5);
63 seq_printf(seq, "\t[%d]", atomic_read(&dev->refcnt));
64 seq_putc(seq, '\n');
65}
66
67struct vcc_state {
68 int bucket;
69 struct sock *sk;
70 int family;
71};
72
73static inline int compare_family(struct sock *sk, int family)
74{
75 return !family || (sk->sk_family == family);
76}
77
78static int __vcc_walk(struct sock **sock, int family, int *bucket, loff_t l)
79{
80 struct sock *sk = *sock;
81
Joe Perches2e1e9842008-04-10 03:33:03 -070082 if (sk == SEQ_START_TOKEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 for (*bucket = 0; *bucket < VCC_HTABLE_SIZE; ++*bucket) {
84 struct hlist_head *head = &vcc_hash[*bucket];
85
86 sk = hlist_empty(head) ? NULL : __sk_head(head);
87 if (sk)
88 break;
89 }
90 l--;
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +090091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092try_again:
93 for (; sk; sk = sk_next(sk)) {
94 l -= compare_family(sk, family);
95 if (l < 0)
96 goto out;
97 }
98 if (!sk && ++*bucket < VCC_HTABLE_SIZE) {
99 sk = sk_head(&vcc_hash[*bucket]);
100 goto try_again;
101 }
Joe Perches2e1e9842008-04-10 03:33:03 -0700102 sk = SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103out:
104 *sock = sk;
105 return (l < 0);
106}
107
108static inline void *vcc_walk(struct vcc_state *state, loff_t l)
109{
110 return __vcc_walk(&state->sk, state->family, &state->bucket, l) ?
111 state : NULL;
112}
113
114static int __vcc_seq_open(struct inode *inode, struct file *file,
Al Viroececfde2007-07-15 21:01:12 +0100115 int family, const struct seq_operations *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 struct vcc_state *state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Pavel Emelyanov9a8c09e2008-02-29 11:37:02 -0800119 state = __seq_open_private(file, ops, sizeof(*state));
120 if (state == NULL)
121 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 state->family = family;
Pavel Emelyanov9a8c09e2008-02-29 11:37:02 -0800124 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static void *vcc_seq_start(struct seq_file *seq, loff_t *pos)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800128 __acquires(vcc_sklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 struct vcc_state *state = seq->private;
131 loff_t left = *pos;
132
133 read_lock(&vcc_sklist_lock);
Joe Perches2e1e9842008-04-10 03:33:03 -0700134 state->sk = SEQ_START_TOKEN;
135 return left ? vcc_walk(state, left) : SEQ_START_TOKEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138static void vcc_seq_stop(struct seq_file *seq, void *v)
Eric Dumazet5c17d5f2008-01-15 03:29:50 -0800139 __releases(vcc_sklist_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 read_unlock(&vcc_sklist_lock);
142}
143
144static void *vcc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
145{
146 struct vcc_state *state = seq->private;
147
148 v = vcc_walk(state, 1);
149 *pos += !!PTR_ERR(v);
150 return v;
151}
152
153static void pvc_info(struct seq_file *seq, struct atm_vcc *vcc)
154{
Joe Perches07367ad2010-01-26 11:40:13 +0000155 static const char *const class_name[] = {
156 "off", "UBR", "CBR", "VBR", "ABR"};
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700157 static const char *const aal_name[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 "---", "1", "2", "3/4", /* 0- 3 */
159 "???", "5", "???", "???", /* 4- 7 */
160 "???", "???", "???", "???", /* 8-11 */
161 "???", "0", "???", "???"}; /* 12-15 */
162
163 seq_printf(seq, "%3d %3d %5d %-3s %7d %-5s %7d %-6s",
Joe Perches07367ad2010-01-26 11:40:13 +0000164 vcc->dev->number, vcc->vpi, vcc->vci,
165 vcc->qos.aal >= ARRAY_SIZE(aal_name) ? "err" :
166 aal_name[vcc->qos.aal], vcc->qos.rxtp.min_pcr,
167 class_name[vcc->qos.rxtp.traffic_class],
168 vcc->qos.txtp.min_pcr,
169 class_name[vcc->qos.txtp.traffic_class]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (test_bit(ATM_VF_IS_CLIP, &vcc->flags)) {
171 struct clip_vcc *clip_vcc = CLIP_VCC(vcc);
172 struct net_device *dev;
173
174 dev = clip_vcc->entry ? clip_vcc->entry->neigh->dev : NULL;
175 seq_printf(seq, "CLIP, Itf:%s, Encap:",
176 dev ? dev->name : "none?");
177 seq_printf(seq, "%s", clip_vcc->encap ? "LLC/SNAP" : "None");
178 }
179 seq_putc(seq, '\n');
180}
181
182static const char *vcc_state(struct atm_vcc *vcc)
183{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700184 static const char *const map[] = { ATM_VS2TXT_MAP };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 return map[ATM_VF2VS(vcc->flags)];
187}
188
189static void vcc_info(struct seq_file *seq, struct atm_vcc *vcc)
190{
191 struct sock *sk = sk_atm(vcc);
192
193 seq_printf(seq, "%p ", vcc);
194 if (!vcc->dev)
195 seq_printf(seq, "Unassigned ");
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900196 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 seq_printf(seq, "%3d %3d %5d ", vcc->dev->number, vcc->vpi,
198 vcc->vci);
199 switch (sk->sk_family) {
Joe Perches07367ad2010-01-26 11:40:13 +0000200 case AF_ATMPVC:
201 seq_printf(seq, "PVC");
202 break;
203 case AF_ATMSVC:
204 seq_printf(seq, "SVC");
205 break;
206 default:
207 seq_printf(seq, "%3d", sk->sk_family);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Joe Perches07367ad2010-01-26 11:40:13 +0000209 seq_printf(seq, " %04lx %5d %7d/%7d %7d/%7d [%d]\n",
210 vcc->flags, sk->sk_err,
211 sk_wmem_alloc_get(sk), sk->sk_sndbuf,
212 sk_rmem_alloc_get(sk), sk->sk_rcvbuf,
213 atomic_read(&sk->sk_refcnt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
215
216static void svc_info(struct seq_file *seq, struct atm_vcc *vcc)
217{
218 if (!vcc->dev)
219 seq_printf(seq, sizeof(void *) == 4 ?
220 "N/A@%p%10s" : "N/A@%p%2s", vcc, "");
221 else
222 seq_printf(seq, "%3d %3d %5d ",
223 vcc->dev->number, vcc->vpi, vcc->vci);
224 seq_printf(seq, "%-10s ", vcc_state(vcc));
225 seq_printf(seq, "%s%s", vcc->remote.sas_addr.pub,
226 *vcc->remote.sas_addr.pub && *vcc->remote.sas_addr.prv ? "+" : "");
227 if (*vcc->remote.sas_addr.prv) {
228 int i;
229
230 for (i = 0; i < ATM_ESA_LEN; i++)
231 seq_printf(seq, "%02x", vcc->remote.sas_addr.prv[i]);
232 }
233 seq_putc(seq, '\n');
234}
235
236static int atm_dev_seq_show(struct seq_file *seq, void *v)
237{
238 static char atm_dev_banner[] =
239 "Itf Type ESI/\"MAC\"addr "
240 "AAL(TX,err,RX,err,drop) ... [refcnt]\n";
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900241
Li Zefan67de7922010-02-08 23:21:51 +0000242 if (v == &atm_devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 seq_puts(seq, atm_dev_banner);
244 else {
245 struct atm_dev *dev = list_entry(v, struct atm_dev, dev_list);
246
247 atm_dev_info(seq, dev);
248 }
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900251
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700252static const struct seq_operations atm_dev_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 .start = atm_dev_seq_start,
254 .next = atm_dev_seq_next,
255 .stop = atm_dev_seq_stop,
256 .show = atm_dev_seq_show,
257};
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259static int atm_dev_seq_open(struct inode *inode, struct file *file)
260{
261 return seq_open(file, &atm_dev_seq_ops);
262}
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900263
Arjan van de Ven9a321442007-02-12 00:55:35 -0800264static const struct file_operations devices_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 .open = atm_dev_seq_open,
266 .read = seq_read,
267 .llseek = seq_lseek,
268 .release = seq_release,
269};
270
271static int pvc_seq_show(struct seq_file *seq, void *v)
272{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900273 static char atm_pvc_banner[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 "Itf VPI VCI AAL RX(PCR,Class) TX(PCR,Class)\n";
275
Joe Perches2e1e9842008-04-10 03:33:03 -0700276 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 seq_puts(seq, atm_pvc_banner);
278 else {
279 struct vcc_state *state = seq->private;
280 struct atm_vcc *vcc = atm_sk(state->sk);
281
282 pvc_info(seq, vcc);
283 }
284 return 0;
285}
286
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700287static const struct seq_operations pvc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 .start = vcc_seq_start,
289 .next = vcc_seq_next,
290 .stop = vcc_seq_stop,
291 .show = pvc_seq_show,
292};
293
294static int pvc_seq_open(struct inode *inode, struct file *file)
295{
296 return __vcc_seq_open(inode, file, PF_ATMPVC, &pvc_seq_ops);
297}
298
Arjan van de Ven9a321442007-02-12 00:55:35 -0800299static const struct file_operations pvc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 .open = pvc_seq_open,
301 .read = seq_read,
302 .llseek = seq_lseek,
Pavel Emelyanov9a8c09e2008-02-29 11:37:02 -0800303 .release = seq_release_private,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304};
305
306static int vcc_seq_show(struct seq_file *seq, void *v)
307{
Joe Perches2e1e9842008-04-10 03:33:03 -0700308 if (v == SEQ_START_TOKEN) {
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900309 seq_printf(seq, sizeof(void *) == 4 ? "%-8s%s" : "%-16s%s",
310 "Address ", "Itf VPI VCI Fam Flags Reply "
311 "Send buffer Recv buffer [refcnt]\n");
312 } else {
313 struct vcc_state *state = seq->private;
314 struct atm_vcc *vcc = atm_sk(state->sk);
315
316 vcc_info(seq, vcc);
317 }
318 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319}
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900320
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700321static const struct seq_operations vcc_seq_ops = {
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900322 .start = vcc_seq_start,
323 .next = vcc_seq_next,
324 .stop = vcc_seq_stop,
325 .show = vcc_seq_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326};
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static int vcc_seq_open(struct inode *inode, struct file *file)
329{
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900330 return __vcc_seq_open(inode, file, 0, &vcc_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900332
Arjan van de Ven9a321442007-02-12 00:55:35 -0800333static const struct file_operations vcc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 .open = vcc_seq_open,
335 .read = seq_read,
336 .llseek = seq_lseek,
Pavel Emelyanov9a8c09e2008-02-29 11:37:02 -0800337 .release = seq_release_private,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338};
339
340static int svc_seq_show(struct seq_file *seq, void *v)
341{
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700342 static const char atm_svc_banner[] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 "Itf VPI VCI State Remote\n";
344
Joe Perches2e1e9842008-04-10 03:33:03 -0700345 if (v == SEQ_START_TOKEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 seq_puts(seq, atm_svc_banner);
347 else {
348 struct vcc_state *state = seq->private;
349 struct atm_vcc *vcc = atm_sk(state->sk);
350
351 svc_info(seq, vcc);
352 }
353 return 0;
354}
355
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700356static const struct seq_operations svc_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 .start = vcc_seq_start,
358 .next = vcc_seq_next,
359 .stop = vcc_seq_stop,
360 .show = svc_seq_show,
361};
362
363static int svc_seq_open(struct inode *inode, struct file *file)
364{
365 return __vcc_seq_open(inode, file, PF_ATMSVC, &svc_seq_ops);
366}
367
Arjan van de Ven9a321442007-02-12 00:55:35 -0800368static const struct file_operations svc_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 .open = svc_seq_open,
370 .read = seq_read,
371 .llseek = seq_lseek,
Pavel Emelyanov9a8c09e2008-02-29 11:37:02 -0800372 .release = seq_release_private,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
375static ssize_t proc_dev_atm_read(struct file *file, char __user *buf,
376 size_t count, loff_t *pos)
377{
378 struct atm_dev *dev;
379 unsigned long page;
380 int length;
381
Joe Perches07367ad2010-01-26 11:40:13 +0000382 if (count == 0)
383 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 page = get_zeroed_page(GFP_KERNEL);
Joe Perches07367ad2010-01-26 11:40:13 +0000385 if (!page)
386 return -ENOMEM;
Josef Sipek76a0f172006-12-08 02:36:52 -0800387 dev = PDE(file->f_path.dentry->d_inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (!dev->ops->proc_read)
389 length = -EINVAL;
390 else {
Joe Perches07367ad2010-01-26 11:40:13 +0000391 length = dev->ops->proc_read(dev, pos, (char *)page);
392 if (length > count)
393 length = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395 if (length >= 0) {
Joe Perches07367ad2010-01-26 11:40:13 +0000396 if (copy_to_user(buf, (char *)page, length))
397 length = -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 (*pos)++;
399 }
400 free_page(page);
401 return length;
402}
403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404struct proc_dir_entry *atm_proc_root;
405EXPORT_SYMBOL(atm_proc_root);
406
407
408int atm_proc_dev_register(struct atm_dev *dev)
409{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 int error;
411
412 /* No proc info */
413 if (!dev->ops->proc_read)
414 return 0;
415
416 error = -ENOMEM;
Eric Dumazet62c97ac2010-03-18 13:48:26 +0000417 dev->proc_name = kasprintf(GFP_KERNEL, "%s:%d", dev->type, dev->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (!dev->proc_name)
419 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Denis V. Lunev0c896522008-05-02 04:08:30 -0700421 dev->proc_entry = proc_create_data(dev->proc_name, 0, atm_proc_root,
422 &proc_atm_dev_ops, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 if (!dev->proc_entry)
424 goto err_free_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return 0;
Joe Perches07367ad2010-01-26 11:40:13 +0000426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427err_free_name:
428 kfree(dev->proc_name);
429err_out:
430 return error;
431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433void atm_proc_dev_deregister(struct atm_dev *dev)
434{
435 if (!dev->ops->proc_read)
436 return;
437
438 remove_proc_entry(dev->proc_name, atm_proc_root);
439 kfree(dev->proc_name);
440}
441
442static struct atm_proc_entry {
443 char *name;
Arjan van de Ven9a321442007-02-12 00:55:35 -0800444 const struct file_operations *proc_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct proc_dir_entry *dirent;
446} atm_proc_ents[] = {
447 { .name = "devices", .proc_fops = &devices_seq_fops },
448 { .name = "pvc", .proc_fops = &pvc_seq_fops },
449 { .name = "svc", .proc_fops = &svc_seq_fops },
450 { .name = "vc", .proc_fops = &vcc_seq_fops },
451 { .name = NULL, .proc_fops = NULL }
452};
453
454static void atm_proc_dirs_remove(void)
455{
456 static struct atm_proc_entry *e;
457
458 for (e = atm_proc_ents; e->name; e++) {
YOSHIFUJI Hideakif7d57452007-02-09 23:24:29 +0900459 if (e->dirent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 remove_proc_entry(e->name, atm_proc_root);
461 }
Denis V. Luneve5d69b92008-01-10 03:51:41 -0800462 proc_net_remove(&init_net, "atm");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
465int __init atm_proc_init(void)
466{
467 static struct atm_proc_entry *e;
468 int ret;
469
Denis V. Luneve5d69b92008-01-10 03:51:41 -0800470 atm_proc_root = proc_net_mkdir(&init_net, "atm", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!atm_proc_root)
472 goto err_out;
473 for (e = atm_proc_ents; e->name; e++) {
474 struct proc_dir_entry *dirent;
475
Wang Chen16e297b2008-02-28 13:55:45 -0800476 dirent = proc_create(e->name, S_IRUGO,
477 atm_proc_root, e->proc_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (!dirent)
479 goto err_out_remove;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 e->dirent = dirent;
481 }
482 ret = 0;
483out:
484 return ret;
485
486err_out_remove:
487 atm_proc_dirs_remove();
488err_out:
489 ret = -ENOMEM;
490 goto out;
491}
492
Kevin Hilmanb9c6e3e2006-08-15 02:02:33 -0700493void atm_proc_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 atm_proc_dirs_remove();
496}