The patch titled uml: make two variables static has been removed from the -mm tree. Its filename was uml-make-two-variables-static.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: uml: make two variables static From: Jeff Dike <jdike@xxxxxxxxxxx> Make a couple of variables static. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/um/drivers/port_kern.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN arch/um/drivers/port_kern.c~uml-make-two-variables-static arch/um/drivers/port_kern.c --- a/arch/um/drivers/port_kern.c~uml-make-two-variables-static +++ a/arch/um/drivers/port_kern.c @@ -129,8 +129,8 @@ static int port_accept(struct port_list return(ret); } -DECLARE_MUTEX(ports_sem); -struct list_head ports = LIST_HEAD_INIT(ports); +static DECLARE_MUTEX(ports_sem); +static struct list_head ports = LIST_HEAD_INIT(ports); void port_work_proc(struct work_struct *unused) { _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are origin.patch uml-fix-prototypes.patch dynamic-kernel-command-line-common.patch dynamic-kernel-command-line-um.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