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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no 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 BFD42C54E49 for ; Fri, 8 May 2020 01:35:52 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 87053208DB for ; Fri, 8 May 2020 01:35:52 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="ZmMki05K" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 87053208DB Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linux-foundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 36C01900007; Thu, 7 May 2020 21:35:52 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 34259900002; Thu, 7 May 2020 21:35:52 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 258EC900007; Thu, 7 May 2020 21:35:52 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0188.hostedemail.com [216.40.44.188]) by kanga.kvack.org (Postfix) with ESMTP id 0E7E2900002 for ; Thu, 7 May 2020 21:35:52 -0400 (EDT) Received: from smtpin04.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay01.hostedemail.com (Postfix) with ESMTP id C7E94180AD811 for ; Fri, 8 May 2020 01:35:51 +0000 (UTC) X-FDA: 76791835302.04.coil09_6d5ced1dbea5d X-HE-Tag: coil09_6d5ced1dbea5d X-Filterd-Recvd-Size: 2789 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by imf02.hostedemail.com (Postfix) with ESMTP for ; Fri, 8 May 2020 01:35:51 +0000 (UTC) Received: from localhost.localdomain (c-73-231-172-41.hsd1.ca.comcast.net [73.231.172.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 11A85215A4; Fri, 8 May 2020 01:35:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1588901750; bh=iICfB/2IuWSrdWopBiL77MQEvX02xta4+HICcPCnYq0=; h=Date:From:To:Subject:In-Reply-To:From; b=ZmMki05K8R50jQ1Cr8mVAL7mtxc2962HJLL3oxRjonxsbrTZy/jMd/igPSwX3lHg6 dwII+KNFdm71yUrjXM/dKNWdOt4oUe/xxKYgnwx6aJKhedubVvnp/lqXDUw0XX8rb6 zkCqI5IyEzg35MvvWYrI7Lj6V+M+OE8/bB0EvjhE= Date: Thu, 07 May 2020 18:35:49 -0700 From: Andrew Morton To: akpm@linux-foundation.org, andreyknvl@google.com, linux-mm@kvack.org, maciej.grochowski@pm.me, mm-commits@vger.kernel.org, torvalds@linux-foundation.org Subject: [patch 04/15] kernel/kcov.c: fix typos in kcov_remote_start documentation Message-ID: <20200508013549.M4PmRWho3%akpm@linux-foundation.org> In-Reply-To: <20200507183509.c5ef146c5aaeb118a25a39a8@linux-foundation.org> User-Agent: s-nail v14.8.16 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: Maciej Grochowski Subject: kernel/kcov.c: fix typos in kcov_remote_start documentation Link: http://lkml.kernel.org/r/20200420030259.31674-1-maciek.grochowski@gmail.com Signed-off-by: Maciej Grochowski Reviewed-by: Andrey Konovalov Signed-off-by: Andrew Morton --- kernel/kcov.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/kernel/kcov.c~kernel-kcovc-fix-typos-in-kcov_remote_start-documentation +++ a/kernel/kcov.c @@ -740,8 +740,8 @@ static const struct file_operations kcov * kcov_remote_handle() with KCOV_SUBSYSTEM_COMMON as the subsystem id and an * arbitrary 4-byte non-zero number as the instance id). This common handle * then gets saved into the task_struct of the process that issued the - * KCOV_REMOTE_ENABLE ioctl. When this proccess issues system calls that spawn - * kernel threads, the common handle must be retrived via kcov_common_handle() + * KCOV_REMOTE_ENABLE ioctl. When this process issues system calls that spawn + * kernel threads, the common handle must be retrieved via kcov_common_handle() * and passed to the spawned threads via custom annotations. Those kernel * threads must in turn be annotated with kcov_remote_start(common_handle) and * kcov_remote_stop(). All of the threads that are spawned by the same process _