aboutsummaryrefslogtreecommitdiff
path: root/fs/xfs
diff options
context:
space:
mode:
authorGravatar Christoph Hellwig <hch@lst.de> 2024-04-23 14:46:06 +0200
committerGravatar Christian Brauner <brauner@kernel.org> 2024-04-24 14:46:39 +0200
commit19e048641bc6e29a4c3ba1427481f86305f3b960 (patch)
tree5780669f90f74cb0db1462583b786ab92cc62ea5 /fs/xfs
parentMerge patch series 'Fix shmem_rename2 directory offset calculation' of https:... (diff)
downloadlinux-19e048641bc6e29a4c3ba1427481f86305f3b960.tar.gz
linux-19e048641bc6e29a4c3ba1427481f86305f3b960.tar.bz2
linux-19e048641bc6e29a4c3ba1427481f86305f3b960.zip
xfs: fix overly long line in the file_operations
Re-wrap the newly added fop_flags fields to not go over 80 characters. Signed-off-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20240423124608.537794-2-hch@lst.de Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/xfs_file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c
index 147439ad3581..c6b6809c1ffe 100644
--- a/fs/xfs/xfs_file.c
+++ b/fs/xfs/xfs_file.c
@@ -1496,8 +1496,8 @@ const struct file_operations xfs_file_operations = {
.fallocate = xfs_file_fallocate,
.fadvise = xfs_file_fadvise,
.remap_file_range = xfs_file_remap_range,
- .fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC | FOP_BUFFER_WASYNC |
- FOP_DIO_PARALLEL_WRITE,
+ .fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC |
+ FOP_BUFFER_WASYNC | FOP_DIO_PARALLEL_WRITE,
};
const struct file_operations xfs_dir_file_operations = {
@@ -1510,6 +1510,6 @@ const struct file_operations xfs_dir_file_operations = {
.compat_ioctl = xfs_file_compat_ioctl,
#endif
.fsync = xfs_dir_fsync,
- .fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC | FOP_BUFFER_WASYNC |
- FOP_DIO_PARALLEL_WRITE,
+ .fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC |
+ FOP_BUFFER_WASYNC | FOP_DIO_PARALLEL_WRITE,
};