linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] FS/FUSE: add __exit to fuse_ctl_cleanup
@ 2014-04-23 16:14 Fabian Frederick
  2014-04-23 16:24 ` Miklos Szeredi
  0 siblings, 1 reply; 2+ messages in thread
From: Fabian Frederick @ 2014-04-23 16:14 UTC (permalink / raw)
  To: linux-kernel; +Cc: Miklos Szeredi, akpm, fuse-devel

fuse_ctl_cleanup is only called by __exit fuse_exit

Cc: Miklos Szeredi <miklos@szeredi.hu>
Cc: fuse-devel@lists.sourceforge.net
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 fs/fuse/control.c | 2 +-
 fs/fuse/fuse_i.h  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/fuse/control.c b/fs/fuse/control.c
index a0b0855..205e0d5 100644
--- a/fs/fuse/control.c
+++ b/fs/fuse/control.c
@@ -348,7 +348,7 @@ int __init fuse_ctl_init(void)
 	return register_filesystem(&fuse_ctl_fs_type);
 }
 
-void fuse_ctl_cleanup(void)
+void __exit fuse_ctl_cleanup(void)
 {
 	unregister_filesystem(&fuse_ctl_fs_type);
 }
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index a257ed8e..adfa2d5 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -725,7 +725,7 @@ int fuse_dev_init(void);
 void fuse_dev_cleanup(void);
 
 int fuse_ctl_init(void);
-void fuse_ctl_cleanup(void);
+void __exit fuse_ctl_cleanup(void);
 
 /**
  * Allocate a request
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] FS/FUSE: add __exit to fuse_ctl_cleanup
  2014-04-23 16:14 [PATCH 1/1] FS/FUSE: add __exit to fuse_ctl_cleanup Fabian Frederick
@ 2014-04-23 16:24 ` Miklos Szeredi
  0 siblings, 0 replies; 2+ messages in thread
From: Miklos Szeredi @ 2014-04-23 16:24 UTC (permalink / raw)
  To: Fabian Frederick; +Cc: linux-kernel, akpm, fuse-devel

On Wed, Apr 23, 2014 at 6:14 PM, Fabian Frederick <fabf@skynet.be> wrote:
> fuse_ctl_cleanup is only called by __exit fuse_exit

Thanks, queued.

Miklos

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-04-23 16:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-23 16:14 [PATCH 1/1] FS/FUSE: add __exit to fuse_ctl_cleanup Fabian Frederick
2014-04-23 16:24 ` Miklos Szeredi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).