Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d8b2ebf authored by Jonathan Corbet's avatar Jonathan Corbet Committed by Linus Torvalds
Browse files

[PATCH] VFS documentation tweak



As I was looking over the get_sb() changes, I stumbled across a little
mistake in the documentation updates.  Unless we're getting into an
interesting new object-oriented realm, I doubt that get_sb() should really
return "struct int"...

Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
Acked-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 82a854ec
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -142,7 +142,7 @@ see also dquot_operations section.

--------------------------- file_system_type ---------------------------
prototypes:
	struct int (*get_sb) (struct file_system_type *, int,
	int (*get_sb) (struct file_system_type *, int,
		       const char *, void *, struct vfsmount *);
	void (*kill_sb) (struct super_block *);
locking rules:
+2 −2
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ members are defined:
struct file_system_type {
	const char *name;
	int fs_flags;
        struct int (*get_sb) (struct file_system_type *, int,
        int (*get_sb) (struct file_system_type *, int,
                       const char *, void *, struct vfsmount *);
        void (*kill_sb) (struct super_block *);
        struct module *owner;