From: Guoqing Jiang Date: Mon, 23 Dec 2019 09:48:54 +0000 (+0100) Subject: md: fix a typo s/creat/create X-Git-Tag: v5.6-rc1~187^2~16^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e173ab55b990d2b4ceb90bf55a88a96eb88598e;p=thirdparty%2Flinux.git md: fix a typo s/creat/create It actually means create here, so fix the typo. Reported-by: Song Liu Signed-off-by: Guoqing Jiang Signed-off-by: Song Liu --- diff --git a/drivers/md/md.c b/drivers/md/md.c index ea37bfacb6fb4..8f5def0cb60a9 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -5771,14 +5771,14 @@ int md_run(struct mddev *mddev) goto bitmap_abort; if (mddev->bitmap_info.max_write_behind > 0) { - bool creat_pool = false; + bool create_pool = false; rdev_for_each(rdev, mddev) { if (test_bit(WriteMostly, &rdev->flags) && rdev_init_serial(rdev)) - creat_pool = true; + create_pool = true; } - if (creat_pool && mddev->serial_info_pool == NULL) { + if (create_pool && mddev->serial_info_pool == NULL) { mddev->serial_info_pool = mempool_create_kmalloc_pool(NR_SERIAL_INFOS, sizeof(struct serial_info));