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.8 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,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 9D487C433DF for ; Tue, 9 Jun 2020 12:47:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6B89420823 for ; Tue, 9 Jun 2020 12:47:10 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="PNMXbYDy" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729782AbgFIMrE (ORCPT ); Tue, 9 Jun 2020 08:47:04 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:54322 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729657AbgFIMqp (ORCPT ); Tue, 9 Jun 2020 08:46:45 -0400 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 7FFA11961; Tue, 9 Jun 2020 14:46:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1591706802; bh=o3rQt9ZqeHfXswLnqtP5Cp6Q+jIrrdpM8L1/nY/stUQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PNMXbYDyKeMN+LcSJGlAjGDFbtOCQYKvr3/CcnjmGFoyTiOvK94nPDPNC4ynr/8/e BuyEhLgCUNs8QmwroXhaYTdZ+E5YSZ0Lmek0T1nMyS+Z2Cb5INhhtw+k5TdczY8fzI 9GEMjckAf2Huwl2QoaFxJdkH/q91w6DiDVQJ4lts= From: Kieran Bingham To: Kieran Bingham 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 15/17] mm: Fix trivial spelling Date: Tue, 9 Jun 2020 13:46:08 +0100 Message-Id: <20200609124610.3445662-16-kieran.bingham+renesas@ideasonboard.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200609124610.3445662-1-kieran.bingham+renesas@ideasonboard.com> References: <20200609124610.3445662-1-kieran.bingham+renesas@ideasonboard.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The word 'descriptor' is misspelled throughout the tree. Fix it up accordingly: decriptors -> descriptors Signed-off-by: Kieran Bingham --- 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 caller. * @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 returns * 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 enqueued page * before definitively releasing it back to the guest system. -- 2.25.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kieran Bingham Subject: [PATCH 15/17] mm: Fix trivial spelling Date: Tue, 9 Jun 2020 13:46:08 +0100 Message-ID: <20200609124610.3445662-16-kieran.bingham+renesas@ideasonboard.com> References: <20200609124610.3445662-1-kieran.bingham+renesas@ideasonboard.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Return-path: In-Reply-To: <20200609124610.3445662-1-kieran.bingham+renesas@ideasonboard.com> Sender: linux-kernel-owner@vger.kernel.org To: Kieran Bingham Cc: linux-renesas-soc@vger.kernel.org, Kieran Bingham , "Michael S. Tsirkin" , Jason Wang , Andrew Morton , Jiri Kosina , "open list:VIRTIO CORE AND NET DRIVERS" , "open list:MEMORY MANAGEMENT" , open list List-Id: virtualization@lists.linuxfoundation.org The word 'descriptor' is misspelled throughout the tree. Fix it up accordingly: decriptors -> descriptors Signed-off-by: Kieran Bingham --- 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 caller. * @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 returns * 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 enqueued page * before definitively releasing it back to the guest system. -- 2.25.1