2023-07-14 07:21:57

by liubin001

[permalink] [raw]
Subject: [PATCH] xfs:ERROR: "(foo*)" should be "(foo *)" changed "(foo*)" to "(foo *)"

xfs:changed "(foo*)" to "(foo *)"

Signed-off-by: Liu Bin <[email protected]>
---
fs/xfs/xfs_buf_item_recover.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/xfs/xfs_buf_item_recover.c
b/fs/xfs/xfs_buf_item_recover.c
index 43167f543afc..db3e45ffceaf 100644
--- a/fs/xfs/xfs_buf_item_recover.c
+++ b/fs/xfs/xfs_buf_item_recover.c
@@ -232,7 +232,7 @@ xlog_recover_validate_buf_type(
return;

magic32 = be32_to_cpu(*(__be32 *)bp->b_addr);
- magic16 = be16_to_cpu(*(__be16*)bp->b_addr);
+ magic16 = be16_to_cpu(*(__be16 *)bp->b_addr);
magicda = be16_to_cpu(info->magic);
switch (xfs_blft_from_flags(buf_f)) {
case XFS_BLFT_BTREE_BUF: