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 lilingfeng3@huawei.com --- 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 ||