From: Liu Aleaxander Date: Tue, 29 Jun 2010 22:05:40 +0000 (-0700) Subject: um: os-linux/mem.c needs sys/stat.h X-Git-Tag: v2.6.35-rc4~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb967ecc584c20c74a007de749ca597068b0fcac;p=platform%2Fkernel%2Flinux-3.10.git um: os-linux/mem.c needs sys/stat.h The os-linux/mem.c file calls fchmod function, which is declared in sys/stat.h header file, so include it. Fixes build breakage under FC13. Signed-off-by: Liu Aleaxander Acked-by: Boaz Harrosh Cc: Jeff Dike Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/um/os-Linux/mem.c b/arch/um/os-Linux/mem.c index 93a11d7..e696144 100644 --- a/arch/um/os-Linux/mem.c +++ b/arch/um/os-Linux/mem.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include "init.h"