From patchwork Wed Mar 17 09:41:58 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin King X-Patchwork-Id: 12145329 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1CAB1C433DB for ; Wed, 17 Mar 2021 09:42:07 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id A005964F6C for ; Wed, 17 Mar 2021 09:42:06 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A005964F6C Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=canonical.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 14B566B006E; Wed, 17 Mar 2021 05:42:06 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 0FB026B0070; Wed, 17 Mar 2021 05:42:06 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id F05756B0071; Wed, 17 Mar 2021 05:42:05 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0026.hostedemail.com [216.40.44.26]) by kanga.kvack.org (Postfix) with ESMTP id D0D2E6B006E for ; Wed, 17 Mar 2021 05:42:05 -0400 (EDT) Received: from smtpin05.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with ESMTP id 883FB781C for ; Wed, 17 Mar 2021 09:42:05 +0000 (UTC) X-FDA: 77928875010.05.D18C62A Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by imf01.hostedemail.com (Postfix) with ESMTP id 05E9C20001D6 for ; Wed, 17 Mar 2021 09:42:04 +0000 (UTC) Received: from 1.general.cking.uk.vpn ([10.172.193.212] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lMSgh-0005in-5F; Wed, 17 Mar 2021 09:41:59 +0000 From: Colin King To: Christoph Lameter , Pekka Enberg , Joonsoo Kim , Andrew Morton , Vlastimil Babka , linux-mm@kvack.org Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] mm: slab: Fix spelling mistake "disired" -> "desired" Date: Wed, 17 Mar 2021 09:41:58 +0000 Message-Id: <20210317094158.5762-1-colin.king@canonical.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-Stat-Signature: whfq3wm1wt4buqsduy4mh1aim9ujforn X-Rspamd-Server: rspam01 X-Rspamd-Queue-Id: 05E9C20001D6 Received-SPF: none (canonical.com>: No applicable sender policy available) receiver=imf01; identity=mailfrom; envelope-from=""; helo=youngberry.canonical.com; client-ip=91.189.89.112 X-HE-DKIM-Result: none/none X-HE-Tag: 1615974124-752916 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: From: Colin Ian King There is a spelling mistake in a comment. Fix it. Signed-off-by: Colin Ian King --- mm/slab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/slab.c b/mm/slab.c index df45c437b394..d56607a80fa6 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -2284,7 +2284,7 @@ void __kmem_cache_release(struct kmem_cache *cachep) * Because if it is the case, that means we defer the creation of * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point. * And we eventually call down to __kmem_cache_create(), which - * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one. + * in turn looks up in the kmalloc_{dma,}_caches for the desired-size one. * This is a "chicken-and-egg" problem. * * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,