From b39dde4d0765fdaeeb7ffaa51ce1182f98d6de5b Mon Sep 17 00:00:00 2001 From: Randy Dunlap Date: Mon, 19 Mar 2007 19:15:22 -0400 Subject: [PATCH] [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 --- fs/unionfs/sioq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.43.0