This is a note to let you know that I've just added the patch titled um: add missing declaration of 'getrlimit()' and friends to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: um-add-missing-declaration-of-getrlimit-and-friends.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From fdfa4c952844fce881df8c76de9c7180cbe913ab Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich <slyfox@xxxxxxxxxx> Date: Sun, 30 Dec 2012 01:37:30 +0300 Subject: um: add missing declaration of 'getrlimit()' and friends From: Sergei Trofimovich <slyfox@xxxxxxxxxx> commit fdfa4c952844fce881df8c76de9c7180cbe913ab upstream. arch/um/os-Linux/start_up.c: In function 'check_coredump_limit': arch/um/os-Linux/start_up.c:338:16: error: storage size of 'lim' isn't known arch/um/os-Linux/start_up.c:339:2: error: implicit declaration of function 'getrlimit' [-Werror=implicit-function-declaration] Signed-off-by: Sergei Trofimovich <slyfox@xxxxxxxxxx> CC: Jeff Dike <jdike@xxxxxxxxxxx> CC: Richard Weinberger <richard@xxxxxx> CC: Al Viro <viro@xxxxxxxxxxxxxxxxxx> CC: user-mode-linux-devel@xxxxxxxxxxxxxxxxxxxxx CC: user-mode-linux-user@xxxxxxxxxxxxxxxxxxxxx CC: linux-kernel@xxxxxxxxxxxxxxx Signed-off-by: Richard Weinberger <richard@xxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- arch/um/os-Linux/start_up.c | 2 ++ 1 file changed, 2 insertions(+) --- a/arch/um/os-Linux/start_up.c +++ b/arch/um/os-Linux/start_up.c @@ -15,6 +15,8 @@ #include <sys/mman.h> #include <sys/stat.h> #include <sys/wait.h> +#include <sys/time.h> +#include <sys/resource.h> #include <asm/unistd.h> #include "init.h" #include "os.h" Patches currently in stable-queue which might be from slyfox@xxxxxxxxxx are queue-3.4/um-add-missing-declaration-of-getrlimit-and-friends.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html