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=-17.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=unavailable 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 6BF7EC433DB for ; Mon, 22 Mar 2021 03:03:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 495B96148E for ; Mon, 22 Mar 2021 03:03:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229746AbhCVDDZ (ORCPT ); Sun, 21 Mar 2021 23:03:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42608 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229952AbhCVDCu (ORCPT ); Sun, 21 Mar 2021 23:02:50 -0400 Received: from desiato.infradead.org (desiato.infradead.org [IPv6:2001:8b0:10b:1:d65d:64ff:fe57:4e05]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E87F9C061574 for ; Sun, 21 Mar 2021 20:02:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=Content-Transfer-Encoding:Content-Type :In-Reply-To:MIME-Version:Date:Message-ID:From:References:To:Subject:Sender: Reply-To:Cc:Content-ID:Content-Description; bh=PvE96ntsEZmCkQyTvzYblPmwgkpkwSuUISXQXJ8/0WE=; b=gzrjPqdcfDBFHkNhzP7aP0R7zp dl0EJjbKcybjcXnM8df5PjIq0KyotWvgGf7vBPg3hvxgJG+g+V0PCWziq6+r1+WB4FEFxLwl+F80X J+W9WXVaVz3rgHzGGjlK1UBx17R3bDeU1QpBH8juwPlpcRk99Dkc5jPdJne6mcB/dDEwOwq7/qba+ HHd32Viq+AoFTUvySeLGchOHBLcPd267kqeUG2sXYR3oGAGSosIzRpLOLAanfw+1GN/cIsxIzbZ0f fo4Nh9VNllK8EOBh6Xhp1FpuGcO4NkS13yRo9KK1pfifLscnvv6e/b+HduTptiHxba9ICn6bjmxz2 3NyrjYVw==; Received: from [2601:1c0:6280:3f0::3ba4] by desiato.infradead.org with esmtpsa (Exim 4.94 #2 (Red Hat Linux)) id 1lOAq5-00AjuL-NN; Mon, 22 Mar 2021 03:02:47 +0000 Subject: Re: [PATCH] cxl: Fix couple of spellings To: Bhaskar Chowdhury , fbarrat@linux.ibm.com, ajd@linux.ibm.com, arnd@arndb.de, gregkh@linuxfoundation.org, linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org References: <20210322023307.168754-1-unixbhaskar@gmail.com> From: Randy Dunlap Message-ID: <132af432-56a3-5435-06cd-25c8427f654b@infradead.org> Date: Sun, 21 Mar 2021 20:02:43 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.0 MIME-Version: 1.0 In-Reply-To: <20210322023307.168754-1-unixbhaskar@gmail.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 3/21/21 7:33 PM, Bhaskar Chowdhury wrote: > > s/filesytem/filesystem/ > s/symantics/semantics/ > > Signed-off-by: Bhaskar Chowdhury Acked-by: Randy Dunlap > --- > drivers/misc/cxl/context.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/misc/cxl/context.c b/drivers/misc/cxl/context.c > index fb2eff69e449..e627b4056623 100644 > --- a/drivers/misc/cxl/context.c > +++ b/drivers/misc/cxl/context.c > @@ -52,7 +52,7 @@ int cxl_context_init(struct cxl_context *ctx, struct cxl_afu *afu, bool master) > * can always access it when dereferenced from IDR. For the same > * reason, the segment table is only destroyed after the context is > * removed from the IDR. Access to this in the IOCTL is protected by > - * Linux filesytem symantics (can't IOCTL until open is complete). > + * Linux filesystem semantics (can't IOCTL until open is complete). > */ > i = cxl_alloc_sst(ctx); > if (i) > -- -- ~Randy