From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 856F0A034C; Wed, 22 Jun 2022 21:05:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3128A40A84; Wed, 22 Jun 2022 21:05:29 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 6858C4069F for ; Wed, 22 Jun 2022 21:05:28 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id BA8E820C5A72; Wed, 22 Jun 2022 12:05:27 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com BA8E820C5A72 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1655924727; bh=A9L9BelJ6c9FiQvXGlSvaWr16yI0Q8YJHF1iIqWzObc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=RafUL9xQCRZncAZdXV4LBOmEpBc3pYS7kzkAhDF+XisV5PKfEVNLM9yTsNfGI7mpU aDorMsZmDHaKeqfXvkdQQ4SjGEIeMAKZIZWIa/F5a7J4Eg9LwNlPU/kn9/qTJLZPKp I+mRi4k6QOfxQuo3YmjrlaC77JOKCGzWNo1hc0QE= Date: Wed, 22 Jun 2022 12:05:27 -0700 From: Tyler Retzlaff To: Stephen Hemminger Cc: dev@dpdk.org Subject: Re: [PATCH 0/3] more null pointer check removal Message-ID: <20220622190527.GB20387@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20220622185158.397779-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220622185158.397779-1-stephen@networkplumber.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Jun 22, 2022 at 11:51:55AM -0700, Stephen Hemminger wrote: > Reran the Cocci script to check for unnecessary null > pointer comparisons before free related functions. > > Stephen Hemminger (3): > vdpa/mlx5: remove unnecessary null check > raw/ifpga: remove unnecessary null check > dmap/dpaa2: remove unnecessary null check > > drivers/dma/dpaa2/dpaa2_qdma.c | 6 ++---- > drivers/raw/ifpga/ifpga_rawdev.c | 3 +-- > drivers/vdpa/mlx5/mlx5_vdpa_virtq.c | 3 +-- > 3 files changed, 4 insertions(+), 8 deletions(-) > > -- Series-acked-by: Tyler Retzlaff