diff options
author | Jeff Dike <jdike@addtoit.com> | 2008-02-05 01:31:18 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:30 -0500 |
commit | bf53d85ec20c228e0efdadbdb12c0f92283fcfd0 (patch) | |
tree | de724ce6fa140fbc26b2f98fcfffbc5384bd8553 /arch/um | |
parent | 80e39311ff3d7d2267ea8d259aab8dc9d5a59d61 (diff) |
uml: implement O_APPEND
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>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/os-Linux/file.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/um/os-Linux/file.c b/arch/um/os-Linux/file.c index d7404c621ff7..b5afcfd0f861 100644 --- a/arch/um/os-Linux/file.c +++ b/arch/um/os-Linux/file.c | |||
@@ -191,6 +191,8 @@ int os_open_file(const char *file, struct openflags flags, int mode) | |||
191 | f |= O_TRUNC; | 191 | f |= O_TRUNC; |
192 | if (flags.e) | 192 | if (flags.e) |
193 | f |= O_EXCL; | 193 | f |= O_EXCL; |
194 | if (flags.a) | ||
195 | f |= O_APPEND; | ||
194 | 196 | ||
195 | fd = open64(file, f, mode); | 197 | fd = open64(file, f, mode); |
196 | if (fd < 0) | 198 | if (fd < 0) |