[NET] net/core: Fix error handling
authorJosef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Mon, 7 May 2007 07:33:18 +0000 (00:33 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 May 2007 07:33:18 +0000 (00:33 -0700)
Upon failure to register "ptype" procfs entry, "softnet_stat" was not
removed, and an incorrect attempt was made to remove the "ptype" entry.

Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c

index f27d4ab..4317c1b 100644 (file)
@@ -2377,9 +2377,9 @@ static int __init dev_proc_init(void)
 out:
        return rc;
 out_softnet:
-       proc_net_remove("softnet_stat");
-out_dev2:
        proc_net_remove("ptype");
+out_dev2:
+       proc_net_remove("softnet_stat");
 out_dev:
        proc_net_remove("dev");
        goto out;