Skip to content

Commit 19e0486

Browse files
Christoph Hellwigbrauner
authored andcommitted
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Reviewed-by: Darrick J. Wong <[email protected]> Signed-off-by: Christian Brauner <[email protected]>
1 parent 193feb6 commit 19e0486

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fs/xfs/xfs_file.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1496,8 +1496,8 @@ const struct file_operations xfs_file_operations = {
14961496
.fallocate = xfs_file_fallocate,
14971497
.fadvise = xfs_file_fadvise,
14981498
.remap_file_range = xfs_file_remap_range,
1499-
.fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC | FOP_BUFFER_WASYNC |
1500-
FOP_DIO_PARALLEL_WRITE,
1499+
.fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC |
1500+
FOP_BUFFER_WASYNC | FOP_DIO_PARALLEL_WRITE,
15011501
};
15021502

15031503
const struct file_operations xfs_dir_file_operations = {
@@ -1510,6 +1510,6 @@ const struct file_operations xfs_dir_file_operations = {
15101510
.compat_ioctl = xfs_file_compat_ioctl,
15111511
#endif
15121512
.fsync = xfs_dir_fsync,
1513-
.fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC | FOP_BUFFER_WASYNC |
1514-
FOP_DIO_PARALLEL_WRITE,
1513+
.fop_flags = FOP_MMAP_SYNC | FOP_BUFFER_RASYNC |
1514+
FOP_BUFFER_WASYNC | FOP_DIO_PARALLEL_WRITE,
15151515
};

0 commit comments

Comments
 (0)