[PATCH] Unionfs: sioq not __exit
authorRandy Dunlap <randy.dunlap@oracle.com>
Mon, 19 Mar 2007 23:15:22 +0000 (19:15 -0400)
committerErez_Zadok <ezk@cs.sunysb.edu>
Mon, 23 Jul 2007 00:50:22 +0000 (20:50 -0400)
stop_sioq() is called from both __init and __exit functions, so it
shouldn't be marked __exit.

Reported on the kernelnewbies mailing list, but no patch offered there.

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
fs/unionfs/sioq.c

index 7830b89381e85a4579c74fcd7207c66a9e0b86be..c0d89a3fb85975cbd9b8098c85255077650f7c4f 100644 (file)
@@ -40,7 +40,7 @@ int __init init_sioq(void)
        return err;
 }
 
-void __exit stop_sioq(void)
+void stop_sioq(void)
 {
        if (superio_workqueue)
                destroy_workqueue(superio_workqueue);