GIT: unionfs2-2.6.27.y: [PATCH] Unionfs: sioq not __exit
Erez Zadok
ezk at fsl.cs.sunysb.edu
Thu Aug 12 23:15:55 EDT 2010
commit 7a770acc022d7c9a905964e5b73c5a9943ac17c4
Author: Randy Dunlap <randy.dunlap at oracle.com>
Date: Mon Mar 19 19:15:22 2007 -0400
[PATCH] Unionfs: sioq not __exit
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 at oracle.com>
Signed-off-by: Josef 'Jeff' Sipek <jsipek at cs.sunysb.edu>
diff --git a/fs/unionfs/sioq.c b/fs/unionfs/sioq.c
index 7830b89..c0d89a3 100644
--- a/fs/unionfs/sioq.c
+++ b/fs/unionfs/sioq.c
@@ -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);
More information about the unionfs-cvs
mailing list