Files
linux-stable-mirror/include/uapi/linux
Rich Felker 73fa7547c7 vfs: add RWF_NOAPPEND flag for pwritev2
The pwrite function, originally defined by POSIX (thus the "p"), is
defined to ignore O_APPEND and write at the offset passed as its
argument. However, historically Linux honored O_APPEND if set and
ignored the offset. This cannot be changed due to stability policy,
but is documented in the man page as a bug.

Now that there's a pwritev2 syscall providing a superset of the pwrite
functionality that has a flags argument, the conforming behavior can
be offered to userspace via a new flag. Since pwritev2 checks flag
validity (in kiocb_set_rw_flags) and reports unknown ones with
EOPNOTSUPP, callers will not get wrong behavior on old kernels that
don't support the new flag; the error is reported and the caller can
decide how to handle it.

Signed-off-by: Rich Felker <dalias@libc.org>
Link: https://lore.kernel.org/r/20200831153207.GO3265@brightrain.aerifal.cx
Reviewed-by: Jann Horn <jannh@google.com>
Signed-off-by: Christian Brauner <brauner@kernel.org>
2024-01-22 15:33:37 +01:00
..
2024-01-02 12:41:16 +00:00
2023-12-19 08:23:03 -08:00
2023-12-07 12:44:19 -08:00
2024-01-22 15:33:37 +01:00
2023-12-15 17:01:30 +01:00
2023-12-14 11:49:17 +01:00
2023-11-28 19:05:16 +00:00
2023-12-20 19:26:31 -05:00
2023-11-18 14:56:16 +01:00
2023-12-29 11:58:24 -08:00