From 8a646d3ba919da9bde89abc8da2b24c04604b465 Mon Sep 17 00:00:00 2001 From: Li Lingfeng Date: Mon, 20 Nov 2023 19:13:37 +0800 Subject: [PATCH 1/2] fs: Fix syntax issues in comments and print statements. hulk inclusion category: cleanup bugzilla: https://gitee.com/openeuler/kernel/issues/I8HWD1 -------------------------------- There are syntax errors in the comments and print statements of the code section that detects opening write opened block devices exclusively, which need to be fixed. Signed-off-by: Li Lingfeng --- fs/block_dev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/block_dev.c b/fs/block_dev.c index a0e4d3ec300e..6389551aa29e 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c @@ -1669,11 +1669,11 @@ static int __blkdev_get(struct block_device *bdev, fmode_t mode, void *holder, #ifdef CONFIG_BLK_DEV_DUMPINFO /* * Open an write opened block device exclusively, the - * writing process may probability corrupt the device, + * writing process may probably corrupt the device, * such as a mounted file system, give a hint here. */ if (is_conflict_excl_open(bdev, claiming, mode)) - blkdev_dump_conflict_opener(bdev, "VFS: Open an write opened " + blkdev_dump_conflict_opener(bdev, "VFS: Open a write opened " "block device exclusively"); #endif bd_finish_claiming(bdev, claiming, holder); -- Gitee From b345d88410f5d122ee7935bcf99a4a815a7118ec Mon Sep 17 00:00:00 2001 From: Li Lingfeng Date: Mon, 20 Nov 2023 19:13:38 +0800 Subject: [PATCH 2/2] fs: Fix syntax issues in comments hulk inclusion category: cleanup bugzilla: https://gitee.com/openeuler/kernel/issues/I8HWD1 -------------------------------- There are syntax errors in the comments of the code section that detects opening write opened block devices exclusively and opening an exclusive opened block device for write, which need to be fixed. Signed-off-by: Li Lingfeng --- fs/block_dev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/block_dev.c b/fs/block_dev.c index 6389551aa29e..874e62a51a08 100644 --- a/fs/block_dev.c +++ b/fs/block_dev.c @@ -1668,7 +1668,7 @@ static int __blkdev_get(struct block_device *bdev, fmode_t mode, void *holder, spin_lock(&bdev_lock); #ifdef CONFIG_BLK_DEV_DUMPINFO /* - * Open an write opened block device exclusively, the + * Open a write opened block device exclusively, the * writing process may probably corrupt the device, * such as a mounted file system, give a hint here. */ @@ -1683,7 +1683,7 @@ static int __blkdev_get(struct block_device *bdev, fmode_t mode, void *holder, spin_lock(&bdev_lock); /* * Open an exclusive opened device for write may - * probability corrupt the device, such as a + * probably corrupt the device, such as a * mounted file system, give a hint here. */ if (bdev->bd_holders || -- Gitee