The patch titled Subject: debugfs: make __create_file() static has been added to the -mm tree. Its filename is debugfs-make-__create_file-static.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Chris Wright <chrisw@xxxxxxxxxxxx> Subject: debugfs: make __create_file() static It's only used locally, no need to pollute global namespace. Signed-off-by: Chris Wright <chrisw@xxxxxxxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/debugfs/inode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN fs/debugfs/inode.c~debugfs-make-__create_file-static fs/debugfs/inode.c --- a/fs/debugfs/inode.c~debugfs-make-__create_file-static +++ a/fs/debugfs/inode.c @@ -291,9 +291,9 @@ static struct file_system_type debug_fs_ .kill_sb = kill_litter_super, }; -struct dentry *__create_file(const char *name, umode_t mode, - struct dentry *parent, void *data, - const struct file_operations *fops) +static struct dentry *__create_file(const char *name, umode_t mode, + struct dentry *parent, void *data, + const struct file_operations *fops) { struct dentry *dentry = NULL; int error; _ Patches currently in -mm which might be from chrisw@xxxxxxxxxxxx are debugfs-make-__create_file-static.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html