From nobody Thu Apr 30 09:50:35 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 60ACBC433EF for ; Fri, 1 Jul 2022 07:20:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235055AbiGAHUF (ORCPT ); Fri, 1 Jul 2022 03:20:05 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47096 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234517AbiGAHUC (ORCPT ); Fri, 1 Jul 2022 03:20:02 -0400 Received: from mail.nfschina.com (unknown [IPv6:2400:dd01:100f:2:72e2:84ff:fe10:5f45]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id A02E94F1B7; Fri, 1 Jul 2022 00:20:01 -0700 (PDT) Received: from localhost (unknown [127.0.0.1]) by mail.nfschina.com (Postfix) with ESMTP id C40761E80D94; Fri, 1 Jul 2022 15:18:32 +0800 (CST) X-Virus-Scanned: amavisd-new at test.com Received: from mail.nfschina.com ([127.0.0.1]) by localhost (mail.nfschina.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JA5CAX10H07x; Fri, 1 Jul 2022 15:18:30 +0800 (CST) Received: from localhost.localdomain (unknown [112.65.12.78]) (Authenticated sender: jiaming@nfschina.com) by mail.nfschina.com (Postfix) with ESMTPA id ABF5A1E80D93; Fri, 1 Jul 2022 15:18:28 +0800 (CST) From: Zhang Jiaming To: axboe@kernel.dk Cc: linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, liqiong@nfschina.com, renyu@nfschina.com, Zhang Jiaming Subject: [PATCH] block: Fix typo in comments Date: Fri, 1 Jul 2022 15:19:53 +0800 Message-Id: <20220701071953.10753-1-jiaming@nfschina.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" There are 2 typos (writeable,exlusively) in comments. Fix it. Signed-off-by: Zhang Jiaming --- block/bdev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/block/bdev.c b/block/bdev.c index 5fe06c1f2def..5c3754ed5689 100644 --- a/block/bdev.c +++ b/block/bdev.c @@ -272,7 +272,7 @@ EXPORT_SYMBOL(freeze_bdev); * thaw_bdev -- unlock filesystem * @bdev: blockdevice to unlock * - * Unlocks the filesystem and marks it writeable again after freeze_bdev(). + * Unlocks the filesystem and marks it writable again after freeze_bdev(). */ int thaw_bdev(struct block_device *bdev) { @@ -618,7 +618,7 @@ static void bd_clear_claiming(struct block_device *whol= e, void *holder) * @bdev: block device of interest * @holder: holder that has claimed @bdev * - * Finish exclusive open of a block device. Mark the device as exlusively + * Finish exclusive open of a block device. Mark the device as exclusively * open by the holder and wake up all waiters for exclusive open to finish. */ static void bd_finish_claiming(struct block_device *bdev, void *holder) @@ -830,7 +830,7 @@ struct block_device *blkdev_get_by_dev(dev_t dev, fmode= _t mode, void *holder) * Block event polling for write claims if requested. Any write * holder makes the write_holder state stick until all are * released. This is good enough and tracking individual - * writeable reference is too fragile given the way @mode is + * writable reference is too fragile given the way @mode is * used in blkdev_get/put(). */ if ((mode & FMODE_WRITE) && !bdev->bd_write_holder && --=20 2.25.1