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.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 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 E0727C47082 for ; Tue, 8 Jun 2021 15:18:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id BC53860E08 for ; Tue, 8 Jun 2021 15:18:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230392AbhFHPUS (ORCPT ); Tue, 8 Jun 2021 11:20:18 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:55753 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230330AbhFHPUR (ORCPT ); Tue, 8 Jun 2021 11:20:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1623165504; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=tBcRBpcOo4L3CDuJBbhXspjotNiL1vJl7/gggLr39a4=; b=Pm/5mTNZMuew7XpGzwsFCGYyaMrQLfHRPvwFNpjwH6LlwA61GhM+j2CsK+KuQorY9s5IAS 1Vm2mXCF54IiP+JYuoZGsnCbZAYTzOGmofEtQbGybgFHcxXwNkw9meH8N4t74VMWFZ/26K JEVdpOixEMO+2mbJlaxs/P/DfgTYX0U= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-340-6vId1EbSOUqak21Bki-ksw-1; Tue, 08 Jun 2021 11:18:23 -0400 X-MC-Unique: 6vId1EbSOUqak21Bki-ksw-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 60B94801B1D; Tue, 8 Jun 2021 15:17:52 +0000 (UTC) Received: from madcap2.tricolour.ca (unknown [10.3.128.13]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 48B3619C45; Tue, 8 Jun 2021 15:17:47 +0000 (UTC) Date: Tue, 8 Jun 2021 11:17:44 -0400 From: Richard Guy Briggs To: Zhen Lei Cc: Paul Moore , Eric Paris , linux-audit , linux-kernel Subject: Re: [PATCH 1/1] audit: remove trailing spaces and tabs Message-ID: <20210608151744.GD2268484@madcap2.tricolour.ca> References: <20210608075437.13120-1-thunder.leizhen@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210608075437.13120-1-thunder.leizhen@huawei.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2021-06-08 15:54, Zhen Lei wrote: > Run the following command to find and remove the trailing spaces and tabs: > > sed -r -i 's/[ \t]+$//' kernel/audit* The api header include/uapi/linux/audit.h should probably be included. > Signed-off-by: Zhen Lei > --- > kernel/audit.h | 2 +- > kernel/auditsc.c | 8 ++++---- > 2 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/kernel/audit.h b/kernel/audit.h > index 1522e100fd17..cab3e2652dab 100644 > --- a/kernel/audit.h > +++ b/kernel/audit.h > @@ -1,5 +1,5 @@ > /* SPDX-License-Identifier: GPL-2.0-or-later */ > -/* audit -- definition of audit_context structure and supporting types > +/* audit -- definition of audit_context structure and supporting types > * > * Copyright 2003-2004 Red Hat, Inc. > * Copyright 2005 Hewlett-Packard Development Company, L.P. > diff --git a/kernel/auditsc.c b/kernel/auditsc.c > index 0a9a1569f1ea..679a43fd342a 100644 > --- a/kernel/auditsc.c > +++ b/kernel/auditsc.c > @@ -343,13 +343,13 @@ static int audit_compare_uid(kuid_t uid, > { > struct audit_names *n; > int rc; > - > + > if (name) { > rc = audit_uid_comparator(uid, f->op, name->uid); > if (rc) > return rc; > } > - > + > if (ctx) { > list_for_each_entry(n, &ctx->names_list, list) { > rc = audit_uid_comparator(uid, f->op, n->uid); > @@ -367,13 +367,13 @@ static int audit_compare_gid(kgid_t gid, > { > struct audit_names *n; > int rc; > - > + > if (name) { > rc = audit_gid_comparator(gid, f->op, name->gid); > if (rc) > return rc; > } > - > + > if (ctx) { > list_for_each_entry(n, &ctx->names_list, list) { > rc = audit_gid_comparator(gid, f->op, n->gid); > -- > 2.25.1 - RGB -- Richard Guy Briggs Sr. S/W Engineer, Kernel Security, Base Operating Systems Remote, Ottawa, Red Hat Canada IRC: rgb, SunRaycer Voice: +1.647.777.2635, Internal: (81) 32635 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.4 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 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 9543EC47082 for ; Tue, 8 Jun 2021 15:18:02 +0000 (UTC) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 3AD7761246 for ; Tue, 8 Jun 2021 15:18:02 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 3AD7761246 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=tempfail smtp.mailfrom=linux-audit-bounces@redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1623165481; h=from:from:sender:sender:reply-to:subject:subject:date:date: message-id:message-id:to:to:cc:cc:mime-version:mime-version: content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references:list-id:list-help: list-unsubscribe:list-subscribe:list-post; bh=5dkwigWZKtBTuvOp1u3MVJzKrxohwWTwSN9+DTG+W0s=; b=Bx4xbT8mqAnioDvtY0hNejFJH84I3+fC9WUeZ+DBFX3NjMvePUtVem0ca+XWsyK8Dq6GkS JwlyGVeSIvXQpWTlcFVieXjoSnrZqUFQoG56jXTMCVSFGK4VaR4jkkkM1lhsrkDROzWbF9 Q3nHV75+kpkVuEhwUXJmN36WbUY5IQQ= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-147-l1Vb-yr9N5-IkpIddZsg8g-1; Tue, 08 Jun 2021 11:18:00 -0400 X-MC-Unique: l1Vb-yr9N5-IkpIddZsg8g-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 3F606802B4F; Tue, 8 Jun 2021 15:17:56 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id B0B345C1BB; Tue, 8 Jun 2021 15:17:55 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 2776644A58; Tue, 8 Jun 2021 15:17:55 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id 158FHq91014390 for ; Tue, 8 Jun 2021 11:17:52 -0400 Received: by smtp.corp.redhat.com (Postfix) id 5EE7819D9D; Tue, 8 Jun 2021 15:17:52 +0000 (UTC) Received: from madcap2.tricolour.ca (unknown [10.3.128.13]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 48B3619C45; Tue, 8 Jun 2021 15:17:47 +0000 (UTC) Date: Tue, 8 Jun 2021 11:17:44 -0400 From: Richard Guy Briggs To: Zhen Lei Subject: Re: [PATCH 1/1] audit: remove trailing spaces and tabs Message-ID: <20210608151744.GD2268484@madcap2.tricolour.ca> References: <20210608075437.13120-1-thunder.leizhen@huawei.com> MIME-Version: 1.0 In-Reply-To: <20210608075437.13120-1-thunder.leizhen@huawei.com> User-Agent: Mutt/1.10.1 (2018-07-13) X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-loop: linux-audit@redhat.com Cc: linux-audit , Eric Paris , linux-kernel X-BeenThere: linux-audit@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Linux Audit Discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-audit-bounces@redhat.com Errors-To: linux-audit-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=linux-audit-bounces@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On 2021-06-08 15:54, Zhen Lei wrote: > Run the following command to find and remove the trailing spaces and tabs: > > sed -r -i 's/[ \t]+$//' kernel/audit* The api header include/uapi/linux/audit.h should probably be included. > Signed-off-by: Zhen Lei > --- > kernel/audit.h | 2 +- > kernel/auditsc.c | 8 ++++---- > 2 files changed, 5 insertions(+), 5 deletions(-) > > diff --git a/kernel/audit.h b/kernel/audit.h > index 1522e100fd17..cab3e2652dab 100644 > --- a/kernel/audit.h > +++ b/kernel/audit.h > @@ -1,5 +1,5 @@ > /* SPDX-License-Identifier: GPL-2.0-or-later */ > -/* audit -- definition of audit_context structure and supporting types > +/* audit -- definition of audit_context structure and supporting types > * > * Copyright 2003-2004 Red Hat, Inc. > * Copyright 2005 Hewlett-Packard Development Company, L.P. > diff --git a/kernel/auditsc.c b/kernel/auditsc.c > index 0a9a1569f1ea..679a43fd342a 100644 > --- a/kernel/auditsc.c > +++ b/kernel/auditsc.c > @@ -343,13 +343,13 @@ static int audit_compare_uid(kuid_t uid, > { > struct audit_names *n; > int rc; > - > + > if (name) { > rc = audit_uid_comparator(uid, f->op, name->uid); > if (rc) > return rc; > } > - > + > if (ctx) { > list_for_each_entry(n, &ctx->names_list, list) { > rc = audit_uid_comparator(uid, f->op, n->uid); > @@ -367,13 +367,13 @@ static int audit_compare_gid(kgid_t gid, > { > struct audit_names *n; > int rc; > - > + > if (name) { > rc = audit_gid_comparator(gid, f->op, name->gid); > if (rc) > return rc; > } > - > + > if (ctx) { > list_for_each_entry(n, &ctx->names_list, list) { > rc = audit_gid_comparator(gid, f->op, n->gid); > -- > 2.25.1 - RGB -- Richard Guy Briggs Sr. S/W Engineer, Kernel Security, Base Operating Systems Remote, Ottawa, Red Hat Canada IRC: rgb, SunRaycer Voice: +1.647.777.2635, Internal: (81) 32635 -- Linux-audit mailing list Linux-audit@redhat.com https://listman.redhat.com/mailman/listinfo/linux-audit