From: Adrian Bunk Make the needlessly global clone_uts_ns() static. Signed-off-by: Adrian Bunk Acked-by: Serge Hallyn Signed-off-by: Andrew Morton --- kernel/utsname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/utsname.c~namespaces-utsname-implement-clone_newuts-flag-tidy kernel/utsname.c --- a/kernel/utsname.c~namespaces-utsname-implement-clone_newuts-flag-tidy +++ a/kernel/utsname.c @@ -19,7 +19,7 @@ * @old_ns: namespace to clone * Return NULL on error (failure to kmalloc), new ns otherwise */ -struct uts_namespace *clone_uts_ns(struct uts_namespace *old_ns) +static struct uts_namespace *clone_uts_ns(struct uts_namespace *old_ns) { struct uts_namespace *ns; _