uml: implement O_APPEND
authorJeff Dike <jdike@addtoit.com>
Tue, 5 Feb 2008 06:31:18 +0000 (22:31 -0800)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Tue, 5 Feb 2008 17:44:30 +0000 (09:44 -0800)
The .a flags in openflags never had an implementation.

Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/um/os-Linux/file.c

index d7404c6..b5afcfd 100644 (file)
@@ -191,6 +191,8 @@ int os_open_file(const char *file, struct openflags flags, int mode)
                f |= O_TRUNC;
        if (flags.e)
                f |= O_EXCL;
+       if (flags.a)
+               f |= O_APPEND;
 
        fd = open64(file, f, mode);
        if (fd < 0)