From mboxrd@z Thu Jan 1 00:00:00 1970 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=-9.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,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 71DC9C433E0 for ; Tue, 9 Jun 2020 14:34:22 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 2FF0720734 for ; Tue, 9 Jun 2020 14:34:22 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="rRn6/k2K" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2FF0720734 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ideasonboard.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id B6DF76B0003; Tue, 9 Jun 2020 10:34:21 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id B45356B0005; Tue, 9 Jun 2020 10:34:21 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id A821D6B0008; Tue, 9 Jun 2020 10:34:21 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0115.hostedemail.com [216.40.44.115]) by kanga.kvack.org (Postfix) with ESMTP id 8D5A56B0003 for ; Tue, 9 Jun 2020 10:34:21 -0400 (EDT) Received: from smtpin01.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay02.hostedemail.com (Postfix) with ESMTP id 513E987CA0 for ; Tue, 9 Jun 2020 14:34:21 +0000 (UTC) X-FDA: 76909918722.01.rake09_5b10f2626dc3 Received: from filter.hostedemail.com (10.5.16.251.rfc1918.com [10.5.16.251]) by smtpin01.hostedemail.com (Postfix) with ESMTP id 847B5183F13AD for ; Tue, 9 Jun 2020 14:34:20 +0000 (UTC) X-HE-Tag: rake09_5b10f2626dc3 X-Filterd-Recvd-Size: 3319 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by imf15.hostedemail.com (Postfix) with ESMTP for ; Tue, 9 Jun 2020 14:34:19 +0000 (UTC) Received: from Q.local (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id C8219291; Tue, 9 Jun 2020 16:34:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1591713257; bh=0agNJjMqAgbhptd9szuIECxsg77Xz5IU7DFai665Qsg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rRn6/k2KQ1mipGk67KnjVjebbei7C7lTbTMDXm/CgMrvl5ODofqN6pDcsA2wJ9njZ zy17vrqPTyuaLRQQMibavu5GGAEEuyib6BTvZSm+0SlL9Bh93oI3F5T4x3pVD+f0Vw pmQqLkzJf+DmnG5n9JULJMjPc1TvzdX3AQnYSp0Q= From: Kieran Bingham To: Kieran Bingham , David Hildenbrand Cc: linux-renesas-soc@vger.kernel.org, Kieran Bingham , "Michael S. Tsirkin" , Jason Wang , Andrew Morton , Jiri Kosina , virtualization@lists.linux-foundation.org (open list:VIRTIO CORE AND NET DRIVERS), linux-mm@kvack.org (open list:MEMORY MANAGEMENT), linux-kernel@vger.kernel.org (open list) Subject: [PATCH v2] mm/balloon_compaction: Fix trivial spelling Date: Tue, 9 Jun 2020 15:34:12 +0100 Message-Id: <20200609143412.3456484-1-kieran.bingham+renesas@ideasonboard.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200609124610.3445662-16-kieran.bingham+renesas@ideasonboard.com> References: <20200609124610.3445662-16-kieran.bingham+renesas@ideasonboard.com> MIME-Version: 1.0 X-Rspamd-Queue-Id: 847B5183F13AD X-Spamd-Result: default: False [0.00 / 100.00] X-Rspamd-Server: rspam04 Content-Transfer-Encoding: quoted-printable 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: The word 'descriptor' is misspelled throughout the tree. Fix it up accordingly: decriptors -> descriptors Signed-off-by: Kieran Bingham Reviewed-by: David Hildenbrand --- mm/balloon_compaction.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mm/balloon_compaction.c b/mm/balloon_compaction.c index 26de020aae7b..907fefde2572 100644 --- a/mm/balloon_compaction.c +++ b/mm/balloon_compaction.c @@ -58,7 +58,7 @@ EXPORT_SYMBOL_GPL(balloon_page_list_enqueue); /** * balloon_page_list_dequeue() - removes pages from balloon's page list = and * returns a list of the pages. - * @b_dev_info: balloon device decriptor where we will grab a page from. + * @b_dev_info: balloon device descriptor where we will grab a page from= . * @pages: pointer to the list of pages that would be returned to the ca= ller. * @n_req_pages: number of requested pages. * @@ -157,7 +157,7 @@ EXPORT_SYMBOL_GPL(balloon_page_enqueue); /* * balloon_page_dequeue - removes a page from balloon's page list and re= turns * its address to allow the driver to release the page. - * @b_dev_info: balloon device decriptor where we will grab a page from. + * @b_dev_info: balloon device descriptor where we will grab a page from= . * * Driver must call this function to properly dequeue a previously enque= ued page * before definitively releasing it back to the guest system. --=20 2.25.1