From: Randy Dunlap Date: Mon, 19 Mar 2007 23:15:22 +0000 (-0400) Subject: [PATCH] Unionfs: sioq not __exit X-Git-Url: https://git.fsl.cs.sunysb.edu/?a=commitdiff_plain;h=b39dde4d0765fdaeeb7ffaa51ce1182f98d6de5b;p=unionfs-3.16.y.git [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 Signed-off-by: Josef 'Jeff' Sipek --- diff --git a/fs/unionfs/sioq.c b/fs/unionfs/sioq.c index 7830b89381e8..c0d89a3fb859 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);