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=-13.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS 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 0E1E1C433C1 for ; Sun, 21 Mar 2021 05:50:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D3CB861930 for ; Sun, 21 Mar 2021 05:50:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229941AbhCUFt6 (ORCPT ); Sun, 21 Mar 2021 01:49:58 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51638 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229894AbhCUFtd (ORCPT ); Sun, 21 Mar 2021 01:49:33 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D0588C061574; Sat, 20 Mar 2021 22:49:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Type:MIME-Version: References:Message-ID:In-Reply-To:Subject:cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=uXfNM/aoeG0C6gMF2mOkomBH0iMI0iTCKPtZRtjZo54=; b=CQ3ja5rnjOK0ctPu5BYb+tsWNJ w3clZjo3ohAuviNYExObS3l7zUO9Zn7tq3bmlqEz/1ia4LQjrkrP4eAAo13/Hvr1xRT82xq/jQ/Ui gQgKbxgGtO414OpzqSMOWGv0EpCmN2/d+6+zKXXlB8Cj9vUboONO7jXI9PB2lrOHKBWkbENJjyJgy 9vWlIMpRjE5VinDtwmM57N7DTzBXOHq5TohXB+lNS4KavqgIbZC0K69BwszVJZDmvvXNtJ8s6IA/7 Is4HagethxKXWTJ44DrJuNZADa4AsvmREPoVNgfYC80nvc10O+zpWMD/TzjopEn4WtW6pd1OtAPga QgYVq9FQ==; Received: from rdunlap (helo=localhost) by bombadil.infradead.org with local-esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lNqxu-002BZH-UV; Sun, 21 Mar 2021 05:49:32 +0000 Date: Sat, 20 Mar 2021 22:49:30 -0700 (PDT) From: Randy Dunlap To: Bhaskar Chowdhury cc: jmorris@namei.org, serge@hallyn.com, linux-security-module@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH V2] device_cgroup: A typo fix In-Reply-To: <20210321040941.31973-1-unixbhaskar@gmail.com> Message-ID: <1f7b653a-3e15-eea4-9128-402b2ed28b@bombadil.infradead.org> References: <20210321040941.31973-1-unixbhaskar@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Sender: Randy Dunlap X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210320_224931_005385_32AD44C1 X-CRM114-Status: GOOD ( 12.79 ) Precedence: bulk List-ID: On Sun, 21 Mar 2021, Bhaskar Chowdhury wrote: > > s/acessed/accessed/ > > > Signed-off-by: Bhaskar Chowdhury Acked-by: Randy Dunlap although I still don't care for the $Subject. > --- > Changes from V1: > Getting rid of unwanted comment delimeter addition > Subject line missed propper commit subject labeling > > security/device_cgroup.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/security/device_cgroup.c b/security/device_cgroup.c > index 04375df52fc9..30b3083276df 100644 > --- a/security/device_cgroup.c > +++ b/security/device_cgroup.c > @@ -409,7 +409,7 @@ static bool verify_new_ex(struct dev_cgroup *dev_cgroup, > } else { > /* > * new exception in the child will add more devices > - * that can be acessed, so it can't match any of > + * that can be accessed, so it can't match any of > * parent's exceptions, even slightly > */ > match = match_exception_partial(&dev_cgroup->exceptions, > -- > 2.20.1 > >