Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp1035910pxk; Fri, 18 Sep 2020 02:01:21 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxic/+VaigeR/W2naxlHZYNKta0pn5J7/6oYkzBNEOABLlGBYcPNf/Z7j9hQf8t0XGRifOY X-Received: by 2002:a05:6402:10c9:: with SMTP id p9mr1439234edu.156.1600419681257; Fri, 18 Sep 2020 02:01:21 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1600419681; cv=none; d=google.com; s=arc-20160816; b=f2giXCNXr2v1Zk0XLRGng9mu3Up6cKrwI3WgfZMQMkOUQCFInc2HR7Yj/lUlsEoym5 aEQCi42QeXFlRM8UZamX3jVjXDphOqvhV7bfjFLdtjeMj4Pj245d7MxZ0liRyZj92Vp2 oIo5wOCSmgMS5MThsb8+kch69VDqzmI8XI4hZZKr0XshPJbMgDjRnAiuq6p6Oa15BFXl XoWRf4odEvoIaZPAa/I3Fg+drq9BcH23cKDOpcGlaX6Joj82Zm+LhV5WPNi+tM7hwNYh oiF2rJ4HQN0XzDKbKFZ/iqrrJCQaD/le4HSDYRFFuvPBP008dTc7pnbntHzFhktnUWNd CUVA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=0cLpd0tsMjAWQYRQHsOCrT1qeoU6zxV+xJmgWaNYj+I=; b=pguPV2ozyVB/YSlP85Zb4W1PQB2Jucdq3TF562PA7TmBfjJTdo8Y4ZRQR9E1FEvVQ6 W52OmpMmG95JXeBjwsjYyTYWWPoSoC7+3LUizUoPWa4Bkfsk7F+mHmiy7Ws84OVJ4SPJ rL4Sdpfgo2pPQUeHdV86asDxg3eee2IXDL4xneFIBKxv6XzLjTDJr+L5qQxjn/r9wVCl i/NqcAS/3LU26rFAtTywCqZsvba3VWTHrep4xfpJyRWGmYBE9queu5+lzGD/6x27KjgJ IQ/WiEm07y75+gvylHikzx3WUEgjh5tyvth30dMWYGRbfPMGmrAJqHloorCevKqA44YP sF6w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=8bytes.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id m4si2198706ejn.597.2020.09.18.02.00.57; Fri, 18 Sep 2020 02:01:21 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=8bytes.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726171AbgIRI70 (ORCPT + 99 others); Fri, 18 Sep 2020 04:59:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33098 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726109AbgIRI7Z (ORCPT ); Fri, 18 Sep 2020 04:59:25 -0400 Received: from theia.8bytes.org (8bytes.org [IPv6:2a01:238:4383:600:38bc:a715:4b6d:a889]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 21174C06174A for ; Fri, 18 Sep 2020 01:59:25 -0700 (PDT) Received: by theia.8bytes.org (Postfix, from userid 1000) id C2B2D396; Fri, 18 Sep 2020 10:59:23 +0200 (CEST) Date: Fri, 18 Sep 2020 10:59:22 +0200 From: Joerg Roedel To: Alex Dewar Cc: iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] iommu: fsl_pamu: Replace use of kzfree with kfree_sensitive Message-ID: <20200918085922.GK31590@8bytes.org> References: <20200911135325.66156-1-alex.dewar90@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200911135325.66156-1-alex.dewar90@gmail.com> User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Sep 11, 2020 at 02:53:25PM +0100, Alex Dewar wrote: > kzfree() is effectively deprecated as of commit 453431a54934 ("mm, > treewide: rename kzfree() to kfree_sensitive()") and is now simply an > alias for kfree_sensitive(). So just replace it with kfree_sensitive(). > > Signed-off-by: Alex Dewar > --- > drivers/iommu/fsl_pamu.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks.