From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <hyonkim@cisco.com>
Received: from alln-iport-8.cisco.com (alln-iport-8.cisco.com [173.37.142.95])
 by dpdk.org (Postfix) with ESMTP id A51311C01;
 Mon, 29 Oct 2018 07:58:03 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=cisco.com; i=@cisco.com; l=1066; q=dns/txt; s=iport;
 t=1540796284; x=1542005884;
 h=date:from:to:cc:subject:message-id:references:
 mime-version:in-reply-to;
 bh=+6VD2LUbniRMXIixiddkp+S3V4K74HHHnK7rkn3VEds=;
 b=gDOpSdYw+L9R1/m8YrhE2MBJdLOkEAWj6thwKYTbIO6imujOGKO5s1Mg
 dm9IjGKl05MGiBHmGPtCsaWVSEq3DhXQnTcGDkf4DB5tIfnJvt0ogqln9
 koKgNNAIfZw3rX2XGZ+g6mnBhvZ7oET/xH0feBKyJKKgkK2pYdz8k4T51 c=;
X-IronPort-AV: E=Sophos;i="5.54,439,1534809600"; d="scan'208";a="192606535"
Received: from rcdn-core-8.cisco.com ([173.37.93.144])
 by alln-iport-8.cisco.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 29 Oct 2018 06:58:02 +0000
Received: from HYONKIM-7R0DR.cisco.com ([10.24.92.243])
 by rcdn-core-8.cisco.com (8.15.2/8.15.2) with ESMTPS id w9T6vv2P031554
 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO);
 Mon, 29 Oct 2018 06:57:59 GMT
Date: Mon, 29 Oct 2018 15:57:56 +0900
From: Hyong Youb Kim <hyonkim@cisco.com>
To: Ferruh Yigit <ferruh.yigit@intel.com>
Cc: Ashish Gupta <ashish.gupta@cavium.com>,
 Fiona Trahe <fiona.trahe@intel.com>,
 Pablo de Lara <pablo.de.lara.guarch@intel.com>,
 Jerin Jacob <jerin.jacob@caviumnetworks.com>,
 John Daley <johndale@cisco.com>, Nikhil Rao <nikhil.rao@intel.com>,
 dev@dpdk.org, stable@dpdk.org
Message-ID: <20181029065755.GA14744@HYONKIM-7R0DR.cisco.com>
References: <20181005162612.31906-1-ferruh.yigit@intel.com>
 <20181028235741.12354-1-ferruh.yigit@intel.com>
 <20181028235741.12354-3-ferruh.yigit@intel.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20181028235741.12354-3-ferruh.yigit@intel.com>
User-Agent: Mutt/1.10.0 (2018-05-17)
X-Outbound-SMTP-Client: 10.24.92.243, [10.24.92.243]
X-Outbound-Node: rcdn-core-8.cisco.com
Subject: Re: [dpdk-stable] [PATCH v3 3/4] fix global variable issues
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Mon, 29 Oct 2018 06:58:04 -0000

On Sun, Oct 28, 2018 at 11:57:40PM +0000, Ferruh Yigit wrote:
> Various fixes related to the global variable usage.
> 
> Fixes: 43e610bb8565 ("compress/octeontx: introduce octeontx zip PMD")
> Fixes: c378f084d6e3 ("compress/octeontx: add device setup ops")
> Fixes: b43ebc65aada ("compress/octeontx: create private xform")
> Fixes: b1ce8ebd97ba ("eventdev: add PMD callbacks for eth Rx adapter")
> Fixes: 3810ae435783 ("eventdev: add interrupt driven queues to Rx adapter")
> Fixes: fefed3d1e62c ("enic: new driver")
> Cc: stable@dpdk.org
> 

[...]

> diff --git a/drivers/net/enic/enic_ethdev.c b/drivers/net/enic/enic_ethdev.c
> index 1a129f414..996bb5542 100644
> --- a/drivers/net/enic/enic_ethdev.c
> +++ b/drivers/net/enic/enic_ethdev.c
> @@ -1030,7 +1030,6 @@ static int enic_check_devargs(struct rte_eth_dev *dev)
>  	return 0;
>  }
>  
> -struct enic *enicpmd_list_head = NULL;
>  /* Initialize the driver
>   * It returns 0 on success.
>   */

For net/enic.

Acked-by: Hyong Youb Kim <hyonkim@cisco.com>

Thank you.
-Hyong