The patch titled Subject: configfs: unexport/make static config_item_init() has been added to the -mm tree. Its filename is configfs-unexport-make-static-config_item_init.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/configfs-unexport-make-static-config_item_init.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/configfs-unexport-make-static-config_item_init.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: Fabian Frederick <fabf@xxxxxxxxx> Subject: configfs: unexport/make static config_item_init() config_item_init() is only used in item.c Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx> Cc: Joel Becker <jlbec@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/configfs/item.c | 3 +-- include/linux/configfs.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff -puN fs/configfs/item.c~configfs-unexport-make-static-config_item_init fs/configfs/item.c --- a/fs/configfs/item.c~configfs-unexport-make-static-config_item_init +++ a/fs/configfs/item.c @@ -47,12 +47,11 @@ static void config_item_release(struct k * config_item_init - initialize item. * @item: item in question. */ -void config_item_init(struct config_item *item) +static void config_item_init(struct config_item *item) { kref_init(&item->ci_kref); INIT_LIST_HEAD(&item->ci_entry); } -EXPORT_SYMBOL(config_item_init); /** * config_item_set_name - Set the name of an item diff -puN include/linux/configfs.h~configfs-unexport-make-static-config_item_init include/linux/configfs.h --- a/include/linux/configfs.h~configfs-unexport-make-static-config_item_init +++ a/include/linux/configfs.h @@ -71,7 +71,6 @@ static inline char *config_item_name(str return item->ci_name; } -extern void config_item_init(struct config_item *); extern void config_item_init_type_name(struct config_item *item, const char *name, struct config_item_type *type); _ Patches currently in -mm which might be from fabf@xxxxxxxxx are configfs-unexport-make-static-config_item_init.patch fs-ext4-fsyncc-generic_file_fsync-call-based-on-barrier-flag.patch fs-befs-btreec-remove-unneeded-initializations.patch fs-affs-inodec-remove-unneeded-initialization.patch fs-affs-amigaffsc-remove-unneeded-initialization.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