xfs: delete extra space and tab in blank line
authorXie Shaowen <studentxswpy@163.com>
Sun, 31 Jul 2022 16:20:25 +0000 (09:20 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Sun, 31 Jul 2022 16:21:27 +0000 (09:21 -0700)
delete extra space and tab in blank line, there is no functional change.

Reported-by: Hacash Robot <hacashRobot@santino.com>
Signed-off-by: Xie Shaowen <studentxswpy@163.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
fs/xfs/xfs_extfree_item.c
fs/xfs/xfs_log.c

index 0d0a0b37d8c5ae554df40a44aebeaabc038049b8..27ccfcd82f042420f197fa32c4857f49a9bf179e 100644 (file)
@@ -188,12 +188,12 @@ xfs_efi_copy_format(xfs_log_iovec_t *buf, xfs_efi_log_format_t *dst_efi_fmt)
 {
        xfs_efi_log_format_t *src_efi_fmt = buf->i_addr;
        uint i;
-       uint len = sizeof(xfs_efi_log_format_t) + 
-               (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);  
-       uint len32 = sizeof(xfs_efi_log_format_32_t) + 
-               (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);  
-       uint len64 = sizeof(xfs_efi_log_format_64_t) + 
-               (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);  
+       uint len = sizeof(xfs_efi_log_format_t) +
+               (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_t);
+       uint len32 = sizeof(xfs_efi_log_format_32_t) +
+               (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_32_t);
+       uint len64 = sizeof(xfs_efi_log_format_64_t) +
+               (src_efi_fmt->efi_nextents - 1) * sizeof(xfs_extent_64_t);
 
        if (buf->i_len == len) {
                memcpy((char *)dst_efi_fmt, (char*)src_efi_fmt, len);
index 498cbb49392b3b991059d387ce0fd5253c3a2fbc..4b1c0a9c63682c28dc5146369033ba0304e76170 100644 (file)
@@ -2004,7 +2004,7 @@ xlog_calc_iclog_size(
 }
 
 /*
- * Flush out the in-core log (iclog) to the on-disk log in an asynchronous 
+ * Flush out the in-core log (iclog) to the on-disk log in an asynchronous
  * fashion.  Previously, we should have moved the current iclog
  * ptr in the log to point to the next available iclog.  This allows further
  * write to continue while this code syncs out an iclog ready to go.