The patch titled Subject: shm: remove unneeded extern for function has been added to the -mm tree. Its filename is shm-remove-unneeded-extern-for-function.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/shm-remove-unneeded-extern-for-function.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/shm-remove-unneeded-extern-for-function.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: Jack Miller <millerjo@xxxxxxxxxx> Subject: shm: remove unneeded extern for function A small cleanup while changing adjacent code. Extern is not needed for functions and only one declaration had it so remove it from the odd line. Signed-off-by: Milton Miller <miltonm@xxxxxxx> Signed-off-by: Jack Miller <millerjo@xxxxxxxxxx> Cc: Davidlohr Bueso <davidlohr@xxxxxx> Cc: Manfred Spraul <manfred@xxxxxxxxxxxxxxxx> Cc: Anton Blanchard <anton@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/shm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/shm.h~shm-remove-unneeded-extern-for-function include/linux/shm.h --- a/include/linux/shm.h~shm-remove-unneeded-extern-for-function +++ a/include/linux/shm.h @@ -52,7 +52,7 @@ struct sysv_shm { long do_shmat(int shmid, char __user *shmaddr, int shmflg, unsigned long *addr, unsigned long shmlba); -extern int is_file_shm_hugepages(struct file *file); +int is_file_shm_hugepages(struct file *file); void exit_shm(struct task_struct *task); #define shm_init_task(task) INIT_LIST_HEAD(&(task)->sysvshm.shm_clist) #else _ Patches currently in -mm which might be from millerjo@xxxxxxxxxx are shm-make-exit_shm-work-proportional-to-task-activity.patch shm-allow-exit_shm-in-parallel-if-only-marking-orphans.patch shm-remove-unneeded-extern-for-function.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