diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-09 13:52:01 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-11 22:30:22 -0400 |
commit | 2ba48ce513c4e545318d22b138861d5876edf906 (patch) | |
tree | 0e2a5130ead5c71f0b079b1acd620fba98f99256 /fs/aio.c | |
parent | 3309dd04cbcd2cdad168485af5cf3576b5051e49 (diff) |
mirror O_APPEND and O_DIRECT into iocb->ki_flags
... avoiding write_iter/fcntl races.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/aio.c')
-rw-r--r-- | fs/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1502,7 +1502,7 @@ static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb, | |||
1502 | } | 1502 | } |
1503 | req->common.ki_pos = iocb->aio_offset; | 1503 | req->common.ki_pos = iocb->aio_offset; |
1504 | req->common.ki_complete = aio_complete; | 1504 | req->common.ki_complete = aio_complete; |
1505 | req->common.ki_flags = 0; | 1505 | req->common.ki_flags = iocb_flags(req->common.ki_filp); |
1506 | 1506 | ||
1507 | if (iocb->aio_flags & IOCB_FLAG_RESFD) { | 1507 | if (iocb->aio_flags & IOCB_FLAG_RESFD) { |
1508 | /* | 1508 | /* |