[ATM]: When proc_create() fails, do some error handling work and return -ENOMEM.
[deliverable/linux.git] / net / atm / lec.c
index 1a8c4c6c0cd054d928fd974ec33094b8586ec305..a2efa7ff41f128a665172bc593eeed557163ac63 100644 (file)
@@ -1249,9 +1249,11 @@ static int __init lane_module_init(void)
 #ifdef CONFIG_PROC_FS
        struct proc_dir_entry *p;
 
-       p = create_proc_entry("lec", S_IRUGO, atm_proc_root);
-       if (p)
-               p->proc_fops = &lec_seq_fops;
+       p = proc_create("lec", S_IRUGO, atm_proc_root, &lec_seq_fops);
+       if (!p) {
+               printk(KERN_ERR "Unable to initialize /proc/net/atm/lec\n");
+               return -ENOMEM;
+       }
 #endif
 
        register_atm_ioctl(&lane_ioctl_ops);
This page took 0.02699 seconds and 5 git commands to generate.