diff options
| author | Miklos Szeredi <mszeredi@redhat.com> | 2017-02-20 10:51:23 -0500 |
|---|---|---|
| committer | Miklos Szeredi <mszeredi@redhat.com> | 2017-02-20 10:51:23 -0500 |
| commit | 0eb8af4916a540c362a2950e5ab54eca32eb7d58 (patch) | |
| tree | f1ef4ae3f3d190f5614aa6fd1411d3e497810d29 /ipc | |
| parent | f74ac01520c9f6d89bbc3c6931a72f757b742f86 (diff) | |
vfs: use helper for calling f_op->fsync()
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'ipc')
| -rw-r--r-- | ipc/shm.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -452,7 +452,7 @@ static int shm_fsync(struct file *file, loff_t start, loff_t end, int datasync) | |||
| 452 | 452 | ||
| 453 | if (!sfd->file->f_op->fsync) | 453 | if (!sfd->file->f_op->fsync) |
| 454 | return -EINVAL; | 454 | return -EINVAL; |
| 455 | return sfd->file->f_op->fsync(sfd->file, start, end, datasync); | 455 | return call_fsync(sfd->file, start, end, datasync); |
| 456 | } | 456 | } |
| 457 | 457 | ||
| 458 | static long shm_fallocate(struct file *file, int mode, loff_t offset, | 458 | static long shm_fallocate(struct file *file, int mode, loff_t offset, |
