summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiu Aleaxander <aleaxander@gmail.com>2010-06-29 15:05:40 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-13 05:31:26 +0200
commit27957444d79357335093639f4781afffc8fd1a43 (patch)
treeaab37b594c19b632686b80730e301f5b93e782d9
parente054ffd990a1bb888eb443b8fb351656d4e78751 (diff)
um: os-linux/mem.c needs sys/stat.h
commit fb967ecc584c20c74a007de749ca597068b0fcac upstream. 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 <Aleaxander@gmail.com> Acked-by: Boaz Harrosh <bharrosh@panasas.com> Cc: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--arch/um/os-Linux/mem.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/um/os-Linux/mem.c b/arch/um/os-Linux/mem.c
index 93a11d7edfa0..e696144d2be3 100644
--- a/arch/um/os-Linux/mem.c
+++ b/arch/um/os-Linux/mem.c
@@ -10,6 +10,7 @@
#include <errno.h>
#include <fcntl.h>
#include <string.h>
+#include <sys/stat.h>
#include <sys/mman.h>
#include <sys/param.h>
#include "init.h"